suchwow/bin/prod

21 lines
356 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
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
echo "Starting gunicorn"