eventcally/entrypoint.sh
2020-12-29 14:14:04 +01:00

11 lines
218 B
Bash
Executable File

#!/usr/bin/env bash
until flask db upgrade
do
echo "Waiting for postgres server to become available..."
sleep 2
done
BIND_PORT=${PORT:-5000}
gunicorn -c gunicorn.conf.py --bind 0.0.0.0:$BIND_PORT project:app