suchwow/bin/prod

25 lines
437 B
Plaintext
Raw Normal View History

2020-08-11 07:15:11 +00:00
#!/bin/bash
BASE=data/gunicorn
2020-08-11 07:15:11 +00: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-05-10 13:57:00 +00:00
kill $(cat $BASE/gunicorn.pid) 2>&1
gunicorn \
2021-05-08 04:39:12 +00:00
--bind 127.0.0.1:4000 "suchwow.app:app" \
--daemon \
--log-file $BASE/gunicorn.log \
--pid $BASE/gunicorn.pid \
--reload
2021-05-10 13:58:12 +00:00
sleep 1
2021-05-10 13:57:00 +00:00
echo "Starting gunicorn with pid $(cat $BASE/gunicorn.pid)"