From f320132e6164bc3289d34a6fdd30e9cd2b063296 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Fri, 22 May 2026 02:13:39 -0400 Subject: [PATCH] Development --- routlin/install.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routlin/install.py b/routlin/install.py index 093bc69..129449b 100644 --- a/routlin/install.py +++ b/routlin/install.py @@ -505,8 +505,11 @@ def main(): header("External Access (optional)") ext_domain = _external_access_domain() if ext_domain: + lan = _lan_ip() print(f" External access to the web dashboard is already configured.") print(f" https://{ext_domain}/") + print(f" The dashboard is also reachable on your local network at:") + print(f" http://{lan}:{FLASK_PORT}/") print() print("Done.") return