feat: update dashboard port from 8080 to 8420 in configuration and documentation

This commit is contained in:
2026-05-10 13:24:49 +02:00
parent f88f60a019
commit 0952c21c7b
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ def schedule_notification(interval: str, at: str, type: str) -> None:
def start_dashboard() -> None:
"""Compatibility hook for tests and optional dashboard startup."""
app = create_app(get_state=get_state, get_next_event=get_next_event)
app.run(host="0.0.0.0", port=8080, debug=False, use_reloader=False)
app.run(host="0.0.0.0", port=8420, debug=False, use_reloader=False)
def main() -> None: