add gunicorn

This commit is contained in:
Michael Grote 2023-04-13 14:53:55 +02:00
parent 82d24e9773
commit e15c6e4727
2 changed files with 6 additions and 0 deletions

View File

@ -1,2 +1,4 @@
Flask==2.0.1
Flask-Cors==3.0.10
gunicorn
requests

4
wsgi.py Normal file
View File

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