mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
11 lines
198 B
Bash
Executable File
11 lines
198 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 --bind 0.0.0.0:$BIND_PORT project:app
|