diff options
Diffstat (limited to 'wsgi.py')
-rw-r--r-- | wsgi.py | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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() |