diff options
| author | Michael Grote | 2023-04-13 14:53:55 +0200 |
|---|---|---|
| committer | Michael Grote | 2023-04-13 14:53:55 +0200 |
| commit | e15c6e472713206521e1013807e637a7f31badbd (patch) | |
| tree | 187ae6009726e5dd506b587044a56b7dcec72ba3 | |
| parent | 82d24e97737401363b7b6e4b930214ec9bfe0c0b (diff) | |
add gunicorn
| -rw-r--r-- | requirements.txt | 2 | ||||
| -rw-r--r-- | wsgi.py | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt index 4e828aa..c23a02a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,4 @@ Flask==2.0.1 Flask-Cors==3.0.10 +gunicorn +requests @@ -0,0 +1,4 @@ +from app import app + +if __name__ == '__main__': + app.run() |