fix: update dashboard host to allow external access
Build and Deploy Docker Container / test (push) Successful in 23s
Build and Deploy Docker Container / build-and-deploy (push) Failing after 52s

This commit is contained in:
2026-05-10 12:07:32 +02:00
parent 6bae1e2f66
commit 3f5630da2c
+1 -1
View File
@@ -729,7 +729,7 @@ def schedule_notification(interval: str, at: str, type: str) -> None:
def start_dashboard() -> None: def start_dashboard() -> None:
"""Compatibility hook for tests and optional dashboard startup.""" """Compatibility hook for tests and optional dashboard startup."""
app = create_app(get_state=get_state, get_next_event=get_next_event) 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: def main() -> None: