From 96151aabf477d79f9be3882676ed01c02b85918c Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 8 Aug 2023 07:39:14 +0300 Subject: Add WSGI entry point. --- wsgi.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 wsgi.py 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() -- cgit v1.2.3