2020-09-25 07:25:35 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-09-27 12:50:25 +00:00
|
|
|
BASE=data/gunicorn
|
|
|
|
|
2020-09-25 07:25:35 +00: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 12:50:25 +00:00
|
|
|
|
|
|
|
mkdir -p $BASE
|
|
|
|
|
2021-07-16 08:29:48 +00:00
|
|
|
pgrep -F $BASE/gunicorn.pid
|
2021-05-17 19:58:22 +00:00
|
|
|
|
2021-07-16 08:29:48 +00: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
|