diff --git a/backend/main.py b/backend/main.py index 215d330..8b2539e 100644 --- a/backend/main.py +++ b/backend/main.py @@ -489,6 +489,7 @@ async def get_config(): "tagline": config['app']['tagline'], "version": config['app']['version'], "searchEnabled": config['search']['enabled'], + "demoMode": DEMO_MODE, # Expose demo mode flag to frontend "authentication": { "enabled": config.get('authentication', {}).get('enabled', False) } diff --git a/frontend/index.html b/frontend/index.html index c53670d..0e890c5 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -1168,6 +1168,13 @@