2019-11-29 14:08:16 +00:00
|
|
|
#!/bin/bash
|
2019-09-05 12:42:21 +00:00
|
|
|
|
2019-10-25 13:28:45 +00:00
|
|
|
echo "Waiting for db..."
|
2019-11-29 14:08:16 +00:00
|
|
|
wait-for-it db:5432 --strict --timeout=0
|
2019-10-25 13:28:45 +00:00
|
|
|
echo "Waiting for redis..."
|
2019-11-29 14:08:16 +00:00
|
|
|
wait-for-it redis:6379 --strict --timeout=0
|
2019-10-25 13:28:45 +00:00
|
|
|
|
2020-04-20 08:11:45 +00:00
|
|
|
GUNICORN_WORKERS="${GUNICORN_WORKERS:-1}"
|
|
|
|
|
|
|
|
source venv/bin/activate
|
|
|
|
flask deploy
|
2020-04-21 16:34:21 +00:00
|
|
|
gunicorn --access-logfile - --bind :5000 --error-logfile - --workers "${GUNICORN_WORKERS}" --worker-class eventlet nopaque:app
|