From e15c6e472713206521e1013807e637a7f31badbd Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Thu, 13 Apr 2023 14:53:55 +0200 Subject: [PATCH] add gunicorn --- requirements.txt | 2 ++ wsgi.py | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 wsgi.py 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 diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..08f9dd1 --- /dev/null +++ b/wsgi.py @@ -0,0 +1,4 @@ +from app import app + +if __name__ == '__main__': + app.run()