From 77f736fee7935af6768caf797be3360f1232a2e5 Mon Sep 17 00:00:00 2001 From: wilfordgrimley <2397930+WilfordGrimley@users.noreply.github.com> Date: Fri, 24 Jul 2026 21:40:09 +0000 Subject: [PATCH] Pass STAGE_E_STREAMING_ENABLED through to django and worker --- docker/docker-compose.prod.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/docker-compose.prod.yml b/docker/docker-compose.prod.yml index 2f7ad4c54..c85c8fe55 100644 --- a/docker/docker-compose.prod.yml +++ b/docker/docker-compose.prod.yml @@ -37,6 +37,9 @@ services: - CSRF_TRUSTED_ORIGINS=https://api.proxyprints.ca - CORS_ALLOWED_ORIGINS=https://proxyprints.github.io,https://proxyprints.ca - SITE_NAME=ProxyPrints + # Stage E streaming activation (docs/features/stage-e-operations.md) - reads + # docker/.env; default False = dormant. Phase-3 activation flips the .env value. + - STAGE_E_STREAMING_ENABLED=${STAGE_E_STREAMING_ENABLED:-False} # Discord OAuth (moderation layer, docs/features/moderation.md) - docker/.env alone # does NOT inject arbitrary variables into the container; only vars explicitly listed # here (via ${...} interpolation) actually reach the process. This block was missing @@ -81,6 +84,9 @@ services: - CSRF_TRUSTED_ORIGINS=https://api.proxyprints.ca - CORS_ALLOWED_ORIGINS=https://proxyprints.github.io,https://proxyprints.ca - SITE_NAME=ProxyPrints + # Stage E streaming activation (docs/features/stage-e-operations.md) - reads + # docker/.env; default False = dormant. Phase-3 activation flips the .env value. + - STAGE_E_STREAMING_ENABLED=${STAGE_E_STREAMING_ENABLED:-False} # Discord OAuth (moderation layer, docs/features/moderation.md) - docker/.env alone # does NOT inject arbitrary variables into the container; only vars explicitly listed # here (via ${...} interpolation) actually reach the process. This block was missing