wowstash/bin/prod

26 lines
477 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-05-17 20:58:22 +01:00
kill $(cat $BASE/gunicorn.pid) 2>&1
2020-09-27 13:50:25 +01:00
gunicorn \
2021-05-17 20:58:22 +01:00
--bind 127.0.0.1:4001 "wowstash.app:app" \
2020-09-27 13:50:25 +01:00
--daemon \
--log-file $BASE/gunicorn.log \
--pid $BASE/gunicorn.pid \
--access-logfile $BASE/access.log \
--reload
2021-05-17 20:58:22 +01:00
sleep 1
2020-09-27 13:59:20 +01:00
echo "Starting gunicorn with pid $(cat $BASE/gunicorn.pid)"