mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-08 08:33:45 +01:00
Fix debug mode in entrypoint.sh
This commit is contained in:
parent
4ce388c8aa
commit
62f1aecfaf
@ -12,14 +12,9 @@ if [ -z "$FLASK_DEBUG" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
ENV="-e FLASK_APP=app/__init__.py -e FLASK_CONFIG=../config.cfg -e FLASK_DEBUG=$FLASK_DEBUG"
|
||||
|
||||
if [ "$FLASK_DEBUG" -eq "1" ]; then
|
||||
EXTRA="--reload"
|
||||
FLASK_APP=app/__init__.py FLASK_CONFIG=../config.cfg FLASK_RUN_PORT=5123 flask run --host=0.0.0.0
|
||||
else
|
||||
ENV="-e FLASK_APP=app/__init__.py -e FLASK_CONFIG=../config.cfg -e FLASK_DEBUG=$FLASK_DEBUG"
|
||||
gunicorn -w 4 -b :5123 $ENV app:app
|
||||
fi
|
||||
|
||||
echo "Running gunicorn with:"
|
||||
echo " - env: $ENV"
|
||||
echo " - extra: $EXTRA"
|
||||
|
||||
gunicorn -w 4 -b :5123 $ENV $EXTRA app:app
|
||||
|
Loading…
Reference in New Issue
Block a user