suchwow/bin/prod

25 lines
469 B
Plaintext
Raw Normal View History

2020-08-11 08:15:11 +01:00
#!/bin/bash
BASE=data/gunicorn
2020-08-11 08:15:11 +01:00
source .venv/bin/activate
export FLASK_APP=suchwow/app.py
export FLASK_SECRETS=config.py
export FLASK_DEBUG=0
export FLASK_ENV=production
mkdir -p $BASE
2021-07-16 22:24:19 +01:00
pgrep -F $BASE/gunicorn.pid
2021-05-10 14:57:00 +01:00
2021-07-16 22:24:19 +01:00
if [[ $? != 0 ]]; then
gunicorn \
--bind 127.0.0.1:4000 "suchwow.app:app" \
--daemon \
--log-file $BASE/gunicorn.log \
--pid $BASE/gunicorn.pid \
--reload
sleep 1
echo "Starting gunicorn with pid $(cat $BASE/gunicorn.pid)"
fi