cli: require user for now
Deploy bin / deploy (push) Successful in 2s
Deploy agebd python package / deploy (push) Successful in 5s

This commit is contained in:
Benjamin Labrecque
2026-07-08 09:44:51 +02:00
parent 44331343ab
commit 3580491fda
+2 -1
View File
@@ -13,11 +13,12 @@ REPO_ROOT = get_git_root(__file__)
def add(
name: str = typer.Option(..., "--name", "-n"),
ioc_port: int = typer.Option(..., "--ioc-port", "-p"),
user: str = typer.Option(..., "--user", "-u"),
):
init_logging()
ServiceCreator(
ioc_port=ioc_port, # TODO: read from registry
user="user", # TODO
user=user, # TODO: read from 'whoami'?
).add_service(name=name)