From abc128d1a5d3f67cce487564dfae94c187c3ba3c Mon Sep 17 00:00:00 2001 From: Matthias Bilger Date: Thu, 2 May 2019 05:28:48 +0200 Subject: [PATCH] added wsgi script --- infomentor/wsgi.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 infomentor/wsgi.py diff --git a/infomentor/wsgi.py b/infomentor/wsgi.py new file mode 100644 index 0000000..b344968 --- /dev/null +++ b/infomentor/wsgi.py @@ -0,0 +1,4 @@ +from infomentor.web import app + +if __name__ == "__main__": + app.run()