From 3f5630da2cac28b2896934452d2230c68a927a13 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Sun, 10 May 2026 12:07:32 +0200 Subject: [PATCH] fix: update dashboard host to allow external access --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 744fa6d..814c066 100644 --- a/main.py +++ b/main.py @@ -729,7 +729,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="127.0.0.1", port=8080, debug=False, use_reloader=False) + app.run(host="0.0.0.0", port=8080, debug=False, use_reloader=False) def main() -> None: