add wsgi handler

This commit is contained in:
br0tkasten 2021-06-01 10:21:59 +00:00
parent febedf57cb
commit 96225145c1
2 changed files with 11 additions and 0 deletions

7
app.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
BASE=$(dirname $0)
cd $BASE
source env/bin/activate
pip3 install -r requirements.txt
gunicorn -D --bind 0.0.0.0:80 --pid /var/run/webapp.pid wsgi:app

4
wsgi.py Normal file
View File

@ -0,0 +1,4 @@
from app import app
if __name__ == "__main__":
app.run()