Compare commits

...

1 Commits

Author SHA1 Message Date
hainenber
f0b6cc555a feat(docker): enable debug mode by default to allow running docker-composed Superset
Signed-off-by: hainenber <dotronghai96@gmail.com>
2026-06-14 17:20:54 +07:00
2 changed files with 4 additions and 4 deletions

View File

@@ -63,8 +63,8 @@ REDIS_HOST=redis
REDIS_PORT=6379
# Development and logging configuration
# FLASK_DEBUG: Enables Flask dev features (auto-reload, better error pages) - keep 'true' for development
FLASK_DEBUG=true
# SUPERSET_DEBUG_ENABLED: Enables Flask dev features (auto-reload, better error pages, Werkzeug debugger) - keep 'true' for development
SUPERSET_DEBUG_ENABLED=true
# SUPERSET_LOG_LEVEL: Controls Superset application logging verbosity (debug, info, warning, error, critical)
SUPERSET_LOG_LEVEL=info

View File

@@ -102,8 +102,8 @@ Affecting the Docker build process:
save some precious time on startup by `SUPERSET_LOAD_EXAMPLES=no docker compose up`
- **SUPERSET_LOG_LEVEL (default=info)**: Can be set to debug, info, warning, error, critical
for more verbose logging
- **SUPERSET_DEBUG_ENABLED (default=false)**: Enable Werkzeug debugger with interactive console.
Set to `true` for debugging: `SUPERSET_DEBUG_ENABLED=true docker compose up`
- **SUPERSET_DEBUG_ENABLED (default=true)**: Enable Werkzeug debugger with interactive console.
Set to `false` for simulate production environment: `SUPERSET_DEBUG_ENABLED=true docker compose up`
For more env vars that affect your configuration, see this
[superset_config.py](https://github.com/apache/superset/blob/master/docker/pythonpath_dev/superset_config.py)