From b07f7b4ded82d1d049e2fba0ac885a27c92550a2 Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Sat, 14 Sep 2024 10:54:47 +0200 Subject: [PATCH] add port on start message --- ui/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/interface.py b/ui/interface.py index 2bad3c5..fbfc196 100644 --- a/ui/interface.py +++ b/ui/interface.py @@ -19,7 +19,7 @@ def handle_services(action, service): service = loaded_services[service] if action == "start": - questionary.print(f"Starting {service.name}...") + questionary.print(f"Starting {service.name} (127.0.0.1:{service.port})...") service.start() elif action == "stop": questionary.print(f"Stopping {service.name}...")