dashboard/backend/entrypoint.sh
Philipp Rothmann 4c6b7e4414 use db backend
2022-10-25 12:24:51 +02:00

6 lines
No EOL
164 B
Bash
Executable file

#!/bin/sh
set -eu
env
flask db upgrade
gunicorn app:app -b 0.0.0.0:5000 --workers "$(nproc)" --reload --capture-output --enable-stdio-inheritance --log-level DEBUG