rifalto/start.sh

6 lines
173 B
Bash
Raw Permalink Normal View History

2023-06-14 15:44:23 -03:00
#!/bin/bash
export PYTHONUNBUFFERED=1
2023-06-14 18:09:49 -03:00
flask --app $FLASK_APP db upgrade
2023-06-14 15:44:23 -03:00
exec gunicorn -b $GUNICORN_BIND --access-logfile - --error-logfile - $FLASK_APP:app
# exec /bin/bash