aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Grote2023-04-13 14:53:55 +0200
committerMichael Grote2023-04-13 14:53:55 +0200
commite15c6e472713206521e1013807e637a7f31badbd (patch)
tree187ae6009726e5dd506b587044a56b7dcec72ba3
parent82d24e97737401363b7b6e4b930214ec9bfe0c0b (diff)
add gunicorn
-rw-r--r--requirements.txt2
-rw-r--r--wsgi.py4
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
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()