summaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2025-11-06 00:48:00 +0000
committerDirk Engling <erdgeist@erdgeist.org>2025-11-06 00:48:00 +0000
commit6f1bcc3db2c8ee807b68fa8a47a1a8cb7aabcc48 (patch)
tree1c9e920b22a6d7d526b0ecb51cb9d73e61e75823 /wsgi.py
parent95ae3c51cf05425baf739919af9938608f62ad64 (diff)
Create a create_app helper to be used from wsgi.py
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wsgi.py b/wsgi.py
index 2ad28d9..db217db 100644
--- a/wsgi.py
+++ b/wsgi.py
@@ -1,4 +1,4 @@
1from halfnarp2 import app 1from halfnarp2 import create_app
2 2
3if __name__ == "__main__": 3app = create_app("config.json")
4 app.run(debug=False) 4#app.run(debug=False)