aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-10-31 11:58:32 -0400
committerGalen Guyer <galen@galenguyer.com>2020-10-31 11:59:58 -0400
commit1009968ea0ca43ef1b1bc421f7694f1f70707948 (patch)
treef40c80a45095782290fb1af52bd7e683d6a74710 /wsgi.py
Initial commit
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/wsgi.py b/wsgi.py
new file mode 100644
index 0000000..a498cb4
--- /dev/null
+++ b/wsgi.py
@@ -0,0 +1,8 @@
+"""
+Primary entry point for the app
+"""
+
+from demo import APP
+
+if __name__ == "__main__":
+ APP.run(host=APP.config["IP"], port=int(APP.config["PORT"]))