aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wsgi.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/wsgi.py b/wsgi.py
new file mode 100644
index 0000000..c44cb8a
--- /dev/null
+++ b/wsgi.py
@@ -0,0 +1,7 @@
+"""WSGI application entry-point."""
+from gn_auth import create_app
+
+app = create_app()
+
+if __name__ == "__main__":
+ app.run()