Reorganize repos

This commit is contained in:
2024-07-23 09:22:19 +02:00
parent 1a371c9349
commit b362c56b73
49 changed files with 0 additions and 0 deletions

16
docker/entrypoint.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
if [ $# -gt 0 ]; then
exec $*
fi
echo Starting ${APP_VERSION}
if [ $FLASK_ENV == "development" ]; then
echo "Running app in debug mode"
export FLASK_DEBUG=1
flask run --host 0.0.0.0
else
echo "Running app in production mode"
gunicorn wsgi:app --config gunicorn.conf.py
fi