chore(server): remove cloudcli service entry

This commit is contained in:
Zhengshou Lai
2026-06-28 00:17:45 +08:00
parent c8081889b9
commit 3ea86867e3
-8
View File
@@ -70,14 +70,6 @@ KNOWN_SERVICES: list[Service] = [
serve_cmd=["npm", "run", "serve"],
dev_cmd=["npm", "run", "dev"],
),
Service(
"cloudcli",
serve_port=3020,
description="CloudCLI (claude-code-ui) web server",
project_dir=Path.home() / ".cloudcli",
serve_cmd=["cloudcli", "start", "--port", "3020"],
prebuild=False, # global npm binary, no project build step
),
]
_BY_NAME: dict[str, Service] = {s.name: s for s in KNOWN_SERVICES}