feat: add platform gitea install entry

This commit is contained in:
Codex
2026-07-05 07:04:02 +00:00
parent 2e00e749a5
commit 496b5fc729
6 changed files with 1246 additions and 4 deletions
+4
View File
@@ -65,6 +65,10 @@ export async function runPlatformInfraCommand(config: UniDeskConfig, args: strin
const { runPlatformInfraKafkaCommand } = await import("../platform-infra-kafka");
return await runPlatformInfraKafkaCommand(config, args.slice(1));
}
if (target === "gitea") {
const { runPlatformInfraGiteaCommand } = await import("../platform-infra-gitea");
return await runPlatformInfraGiteaCommand(config, args.slice(1));
}
if (target !== "sub2api") return unsupported(args);
if (action === "plan" || action === undefined) {
const planArgs = args.slice(2);