diff options
Diffstat (limited to 'wsgi.py')
-rw-r--r-- | wsgi.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..0fcb573 --- /dev/null +++ b/wsgi.py @@ -0,0 +1,13 @@ +""" +WSGI application entry-point. +""" +# import main +from gn3.app import create_app + +print("STARTING WSGI APP") + +app = create_app() + +if __name__ == "__main__": + print("Starting wsgi app...") + app.run() |