From 44331343ab494922c43d3280e346b1ce8b2d4dc0 Mon Sep 17 00:00:00 2001 From: Benjamin Labrecque Date: Wed, 8 Jul 2026 09:38:21 +0200 Subject: [PATCH] cli: require manual port for now --- cli/src/service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/service.py b/cli/src/service.py index 20f85db..b4efc3d 100644 --- a/cli/src/service.py +++ b/cli/src/service.py @@ -12,11 +12,11 @@ REPO_ROOT = get_git_root(__file__) @service.command() def add( name: str = typer.Option(..., "--name", "-n"), + ioc_port: int = typer.Option(..., "--ioc-port", "-p"), ): init_logging() ServiceCreator( - ioc_host="ex-host", # TODO: "sls-vserv-bd-01{{ agebd_env }}" - ioc_port=9999, # TODO + ioc_port=ioc_port, # TODO: read from registry user="user", # TODO ).add_service(name=name)