Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
aacf346
requirements.txt chnages to satisfy dependabots
Nov 18, 2024
ebcdc38
Merge branch 'idc-prod' of https://github.com/ImagingDataCommons/IDC-…
Mar 25, 2025
4d8ec8d
Merge branch 'idc-test' of https://github.com/ImagingDataCommons/IDC-…
Mar 25, 2025
f4cf8b6
Move to v20
Mar 28, 2025
da5326e
Merge pull request #197 from ImagingDataCommons/idc-prod-wc
bcli4d Apr 1, 2025
69f0f48
Merge pull request #228 from ImagingDataCommons/idc-test-wc
bcli4d Jun 24, 2025
a9d3f1c
Merge branch 'master' of https://github.com/ImagingDataCommons/IDC-AP…
Jun 25, 2025
b1c9825
Merge pull request #231 from ImagingDataCommons/idc-test-wc
bcli4d Jun 25, 2025
9a77341
Merge branch 'master' of https://github.com/ImagingDataCommons/IDC-AP…
Jul 9, 2025
63361a0
Merge pull request #240 from ImagingDataCommons/idc-test-wc
bcli4d Jul 9, 2025
fd02621
Remove support for user cohorts.
Jul 9, 2025
ff2a64f
Merge branch 'idc-test' into idc-test-wc
bcli4d Jul 9, 2025
bf9242c
Merge pull request #241 from ImagingDataCommons/idc-test-wc
bcli4d Jul 9, 2025
7cfe5f0
Debugging test API deployment
Jul 10, 2025
b84ce67
Merge branch 'idc-test' of https://github.com/ImagingDataCommons/IDC-…
Jul 10, 2025
12b82c3
Merge pull request #242 from ImagingDataCommons/idc-test-wc
bcli4d Jul 10, 2025
3dd665b
Merge branch 'idc-test' of https://github.com/ImagingDataCommons/IDC-…
Jul 15, 2025
3cfcb72
Merge pull request #243 from ImagingDataCommons/idc-prod-wc
bcli4d Jul 15, 2025
37179ee
Merge branch 'idc-prod' of https://github.com/ImagingDataCommons/IDC-…
Jan 2, 2026
74318a8
Debugging test API deployment
Jan 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ six==1.16.0
sqlparse==0.5.0
tomli==2.0.1
uritemplate==4.1.1
urllib3==2.5.0
urllib3==2.6.2
wcwidth==0.2.6
Werkzeug==3.1.0
zipp==3.19.1
Expand Down
4 changes: 2 additions & 2 deletions settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
print("[STATUS] DEBUG mode is "+str(DEBUG))

LOGGER_NAME = os.environ.get('API_LOGGER_NAME', 'main_logger')
LOG_LEVEL = logging.DEBUG if DEBUG else logging.INFO
# LOG_LEVEL = logging.DEBUG
# LOG_LEVEL = logging.DEBUG if DEBUG else logging.INFO
LOG_LEVEL = logging.DEBUG

BASE_URL = os.environ.get('BASE_URL', 'https://dev-portal.canceridc.dev')
BASE_API_URL = os.environ.get('BASE_API_URL', 'https://dev-portal.canceridc.dev')
Expand Down
8 changes: 4 additions & 4 deletions shell/copy_openapi_appengine_to_test_gcs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ DATE=$(date '+%Y%m%d_%H%M%S')

cp openapi-appengine.v1.yaml test.openapi-appengine.v1.yaml
sed -i "" 's/#host: "testing-api.canceridc.dev"/host: "testing-api.canceridc.dev"/' test.openapi-appengine.v1.yaml
sed -i "" 's/x-google-audiences: "94/#x-google-audiences: "94/' test.openapi-appengine.v1.yaml
sed -i "" 's/#x-google-audiences: "10/x-google-audiences: "10/' test.openapi-appengine.v1.yaml
#sed -i "" 's/x-google-audiences: "94/#x-google-audiences: "94/' test.openapi-appengine.v1.yaml
#sed -i "" 's/#x-google-audiences: "10/x-google-audiences: "10/' test.openapi-appengine.v1.yaml
sed -i "" 's/#- "https"/- "https"/' test.openapi-appengine.v1.yaml
sed -i "" 's/- "http"/#- "http"/' test.openapi-appengine.v1.yaml
cp openapi-appengine.v2.yaml test.openapi-appengine.v2.yaml
sed -i "" 's/#host: "testing-api.canceridc.dev"/host: "testing-api.canceridc.dev"/' test.openapi-appengine.v2.yaml
sed -i "" 's/x-google-audiences: "94/#x-google-audiences: "94/' test.openapi-appengine.v2.yaml
sed -i "" 's/#x-google-audiences: "10/x-google-audiences: "10/' test.openapi-appengine.v2.yaml
#sed -i "" 's/x-google-audiences: "94/#x-google-audiences: "94/' test.openapi-appengine.v2.yaml
#sed -i "" 's/#x-google-audiences: "10/x-google-audiences: "10/' test.openapi-appengine.v2.yaml
sed -i "" 's/#- "https"/- "https"/' test.openapi-appengine.v2.yaml
sed -i "" 's/- "http"/#- "http"/' test.openapi-appengine.v2.yaml

Expand Down