cli: require manual port for now
Deploy bin / deploy (push) Successful in 4s
Deploy agebd python package / deploy (push) Successful in 1s

This commit is contained in:
Benjamin Labrecque
2026-07-08 09:38:21 +02:00
parent dfd6e1eb4a
commit 44331343ab
+2 -2
View File
@@ -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)