Start setting up for Gunicorn and Dokku

This commit is contained in:
dan
2022-01-19 22:41:11 -05:00
parent 86ef2da3bb
commit 8753a8d9fd
2 changed files with 2 additions and 1 deletions

1
Procfile Normal file
View File

@@ -0,0 +1 @@
web: gunicorn app:app --workers=4

2
app.py
View File

@@ -9,4 +9,4 @@ def hello_world():
if __name__ == '__main__': if __name__ == '__main__':
app.run() serve(app, host='0.0.0.0', port=8000)