feat(lobby): gate Angular SPA shell behind feature flag

This commit is contained in:
2026-03-01 11:06:55 +00:00
parent 7180cc9b0d
commit 5bdbdbd837
3 changed files with 34 additions and 0 deletions

View File

@@ -99,6 +99,9 @@ STATIC_ROOT = BASE_DIR / 'staticfiles'
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
WPP_SPA_ENABLED = env('WPP_SPA_ENABLED', 'false').lower() == 'true'
WPP_SPA_ASSET_BASE = env('WPP_SPA_ASSET_BASE', '/static/frontend/angular/browser').rstrip('/')
CHANNEL_REDIS_HOST = env('CHANNEL_REDIS_HOST', '127.0.0.1')
CHANNEL_REDIS_PORT = int(env('CHANNEL_REDIS_PORT', '6379'))
CHANNEL_LAYERS = {