fix: add app.run() — script was creating app then exiting
Deploy contracts-flask / validate (push) Successful in 0s

This commit is contained in:
2026-07-15 11:46:23 +04:00
parent f176ddad71
commit 32660d2590
+3
View File
@@ -40,3 +40,6 @@ def _init_db():
app = create_app() app = create_app()
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, threaded=True)