mirror of
https://git.wownero.com/lza_menace/wowstash.git
synced 2024-08-15 00:33:15 +00:00
9 lines
229 B
Text
9 lines
229 B
Text
|
#!/bin/bash
|
||
|
|
||
|
source .venv/bin/activate
|
||
|
export FLASK_APP=wowstash/app.py
|
||
|
export FLASK_SECRETS=config.py
|
||
|
export FLASK_DEBUG=0
|
||
|
export FLASK_ENV=production
|
||
|
gunicorn --bind 0.0.0.0:4000 "wowstash.app:app" -D --log-file ./data/app.log
|