From ff291b695171066d0d07ae9732431ea20725d02c Mon Sep 17 00:00:00 2001 From: sysek Date: Sun, 22 Dec 2024 07:48:41 +0100 Subject: [PATCH] add wsgi.py --- wsgi.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 wsgi.py diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..357912d --- /dev/null +++ b/wsgi.py @@ -0,0 +1,4 @@ +from app import app + +if __name__ == '__main__': + app.run(debug=True)