aboutsummaryrefslogtreecommitdiffstats
path: root/wsgi.py
diff options
context:
space:
mode:
authorMichael Grote2023-04-13 14:53:55 +0200
committerMichael Grote2023-04-13 14:53:55 +0200
commite15c6e472713206521e1013807e637a7f31badbd (patch)
tree187ae6009726e5dd506b587044a56b7dcec72ba3 /wsgi.py
parent82d24e97737401363b7b6e4b930214ec9bfe0c0b (diff)
add gunicorn
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py4
1 files changed, 4 insertions, 0 deletions
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()