wowstash/bin/prod

25 lines
471 B
Plaintext
Raw Normal View History

2020-09-25 08:25:35 +01:00
#!/bin/bash
2020-09-27 13:50:25 +01:00
BASE=data/gunicorn
2020-09-25 08:25:35 +01:00
source .venv/bin/activate
export FLASK_APP=wowstash/app.py
export FLASK_SECRETS=config.py
export FLASK_DEBUG=0
export FLASK_ENV=production
2020-09-27 13:50:25 +01:00
mkdir -p $BASE
2021-07-16 09:29:48 +01:00
pgrep -F $BASE/gunicorn.pid
2021-05-17 20:58:22 +01:00
2021-07-16 09:29:48 +01:00
if [[ $? != 0 ]]; then
gunicorn \
--bind 127.0.0.1:4001 "wowstash.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