basic Flask application setup, requirements.txt + .flaskenv,

essentially read for development
This commit is contained in:
Xevion
2020-06-19 14:03:41 -05:00
parent 9e39222a9a
commit 4062be7bac
8 changed files with 30 additions and 6 deletions

10
wsgi.py Normal file
View File

@@ -0,0 +1,10 @@
"""
wsgi.py
Simple launcher file for project.
"""
from trivia import app
if __name__ == "__main__":
app.run(host="0.0.0.0")