From 262c6b048aa034afaac5d92036cfdde64c52c36d Mon Sep 17 00:00:00 2001 From: advaithm Date: Fri, 5 Mar 2021 11:44:21 +0530 Subject: [PATCH] added wsgi.py to replace fcgi --- 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..3c1465a --- /dev/null +++ b/wsgi.py @@ -0,0 +1,4 @@ +from app import app + +if __name__ == '__main__': + app.run() \ No newline at end of file