[fix] fix for css not loading on docker dev mode (#6934)

This commit is contained in:
Ignacio Pérez Vergara 2019-02-23 01:03:17 -03:00 committed by Maxime Beauchemin
parent ea9d22b2ec
commit 5c484e78a2
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ elif [ "$SUPERSET_ENV" = "development" ]; then
# needed by superset runserver
(cd superset/assets/ && npm ci && npm run sync-backend)
(cd superset/assets/ && npm run dev) &
FLASK_APP=superset:app flask run -p 8088 --with-threads --reload --debugger --host=0.0.0.0
FLASK_ENV=development FLASK_APP=superset:app flask run -p 8088 --with-threads --reload --debugger --host=0.0.0.0
elif [ "$SUPERSET_ENV" = "production" ]; then
celery worker --app=superset.sql_lab:celery_app --pool=gevent -Ofair &
gunicorn --bind 0.0.0.0:8088 \