From a9b69265f186d864c7a6099a00dff3362dd7cbfa Mon Sep 17 00:00:00 2001 From: "Dominik V. Salonen" Date: Mon, 1 Feb 2016 11:29:47 +0100 Subject: [PATCH] Add Gunicorn entry point --- 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..97a3843 --- /dev/null +++ b/wsgi.py @@ -0,0 +1,4 @@ +from run import app + +if __name__ == "__main__": + app.run() \ No newline at end of file