Skip to content
Merged
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,10 @@ services:
# issue #38: was DEBUG: "1" -- vestigial, settings.py never read it.
# Now wired to the real env var (omnibioai/settings.py:143), default off.
DJANGO_DEBUG: "false"
# issue #38 follow-up: SECRET_KEY rotation. Old (potentially-exposed)
# key kept in FALLBACKS until the bake-period end date noted on #38.
DJANGO_SECRET_KEY: ${WORKBENCH_DJANGO_SECRET_KEY}
DJANGO_SECRET_KEY_FALLBACKS: ${WORKBENCH_DJANGO_SECRET_KEY_FALLBACKS:-}
CSRF_EXTRA_ORIGINS: "http://localhost:5174,http://localhost:8000,http://${HOST_IP:-192.168.86.234}:5174,http://${HOST_IP:-192.168.86.234}:8000"
DJANGO_SETTINGS_MODULE: omnibioai.settings
DB_HOST: mysql
Expand Down Expand Up @@ -489,6 +493,10 @@ services:
# issue #38: was DEBUG: "1" -- vestigial, settings.py never read it.
# Now wired to the real env var (omnibioai/settings.py:143), default off.
DJANGO_DEBUG: "false"
# issue #38 follow-up: SECRET_KEY rotation. Old (potentially-exposed)
# key kept in FALLBACKS until the bake-period end date noted on #38.
DJANGO_SECRET_KEY: ${WORKBENCH_DJANGO_SECRET_KEY}
DJANGO_SECRET_KEY_FALLBACKS: ${WORKBENCH_DJANGO_SECRET_KEY_FALLBACKS:-}
CSRF_EXTRA_ORIGINS: "http://localhost:5174,http://localhost:8000,http://${HOST_IP:-192.168.86.234}:5174,http://${HOST_IP:-192.168.86.234}:8000"
DJANGO_SETTINGS_MODULE: omnibioai.settings
DB_HOST: mysql
Expand Down
Loading