mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
10 lines
168 B
Bash
10 lines
168 B
Bash
#!/usr/bin/env bash
|
|
|
|
until flask db upgrade
|
|
do
|
|
echo "Waiting for postgres server to become available..."
|
|
sleep 2
|
|
done
|
|
|
|
gunicorn --bind 0.0.0.0:5000 project:app
|