heathcheck / README.md / webhook_port

This commit is contained in:
2026-08-07 13:13:41 +02:00
parent dc029f1cf9
commit aefcd90119
5 changed files with 14 additions and 14 deletions
+2 -4
View File
@@ -108,11 +108,9 @@ def main():
scheduler.start()
log.info("Fallback-Polling gestartet (alle %d Minuten).", config.poll_interval_minutes)
log.info(
"Webhook-Server startet auf Port %d (GET /webhook/update, kein Auth).", config.webhook_port
)
log.info("Webhook-Server startet auf Port 8090 (GET /webhook/update, kein Auth).")
logging.getLogger("werkzeug").setLevel(logging.ERROR)
app.run(host="0.0.0.0", port=config.webhook_port)
app.run(host="0.0.0.0", port=8090)
if __name__ == "__main__":