update prod run script

This commit is contained in:
lza_menace 2021-05-10 06:57:00 -07:00
parent 57f0bcc880
commit fbd2cc3c34
1 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,8 @@ export FLASK_ENV=production
mkdir -p $BASE
kill $(cat $BASE/gunicorn.pid) 2>&1
gunicorn \
--bind 127.0.0.1:4000 "suchwow.app:app" \
--daemon \
@ -17,4 +19,4 @@ gunicorn \
--pid $BASE/gunicorn.pid \
--reload
echo "Starting gunicorn"
echo "Starting gunicorn with pid $(cat $BASE/gunicorn.pid)"