proper closing, metadata file locations moved

This commit is contained in:
michalcourson
2026-03-01 13:48:31 -05:00
parent 801966e8d8
commit d37cd773f8
10 changed files with 483 additions and 40 deletions

View File

@ -75,7 +75,7 @@ def main():
app.register_blueprint(settings_bp)
print(f"Starting Flask server on port {settings.get_settings('http_port')}")
# app.run(host='127.0.0.1', port=settings.get_settings('http_port'), debug=False, use_reloader=True)
socketio.run(app, host='127.0.0.1', port=settings.get_settings('http_port'), debug=False, use_reloader=True, allow_unsafe_werkzeug=True)
socketio.run(app, host='127.0.0.1', port=settings.get_settings('http_port'), debug=False, use_reloader=False, allow_unsafe_werkzeug=True)