fix: debug=False in production, verhindert Reloader-Code-Stale-Bug

This commit is contained in:
Hermes Agent
2026-06-18 00:22:40 +02:00
parent b2b207af46
commit 3f56a53663
+1 -1
View File
@@ -3330,4 +3330,4 @@ if __name__ == "__main__":
print(f" Meta API: {'✅ configured' if META_TOKEN else '❌ no token'}")
print(f" Admin: http://127.0.0.1:{PORT}/admin")
print(f" Webhook: http://127.0.0.1:{PORT}/whatsapp/webhook")
app.run(host="127.0.0.1", port=PORT, debug=True)
app.run(host="127.0.0.1", port=PORT, debug=False)