get it prod ready

This commit is contained in:
lza_menace 2020-09-25 00:25:35 -07:00
parent ae98ed0004
commit f5deb8ef41
3 changed files with 10 additions and 1 deletions

8
bin/prod Executable file
View File

@ -0,0 +1,8 @@
#!/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

View File

@ -11,3 +11,4 @@ qrcode
Pillow
docker
elasticsearch
gunicorn

View File

@ -1,6 +1,6 @@
from wowstash.factory import create_app
app = create_app()
if __name__ == '__main__':
app = create_app()
app.run()