From 1009968ea0ca43ef1b1bc421f7694f1f70707948 Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Sat, 31 Oct 2020 11:58:32 -0400 Subject: Initial commit --- wsgi.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 wsgi.py (limited to 'wsgi.py') 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"])) -- cgit v1.2.3