aboutsummaryrefslogtreecommitdiff
path: root/wqflask/wsgi.py
diff options
context:
space:
mode:
authorzsloan2018-01-30 10:30:22 -0600
committerGitHub2018-01-30 10:30:22 -0600
commit1a00b3976f770865f47d4526db92131704b55797 (patch)
tree6fa4e488c9c601a5907e0c251fa7eec7f4a94a12 /wqflask/wsgi.py
parent4634cf87761980a1682473211259698b7be720e4 (diff)
parentf60d49527bedfc1ecda401f49fae9c9a5bbcf5f9 (diff)
downloadgenenetwork2-1a00b3976f770865f47d4526db92131704b55797.tar.gz
Merge pull request #274 from pjotrp/pjotr
Add gunicorn support
Diffstat (limited to 'wqflask/wsgi.py')
-rw-r--r--wqflask/wsgi.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/wqflask/wsgi.py b/wqflask/wsgi.py
new file mode 100644
index 00000000..be9c7b37
--- /dev/null
+++ b/wqflask/wsgi.py
@@ -0,0 +1,4 @@
+from run_gunicorn import app as application # expect application as a name
+
+if __name__ == "__main__":
+ application.run()