Disable debug/reloader for background launch compatibility

This commit is contained in:
2026-05-05 02:36:46 -04:00
parent fe61f1f48e
commit ca41465728
+6
View File
@@ -0,0 +1,6 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5010, debug=False, use_reloader=False)