feat: add fast qa lab ui refresh mode

This commit is contained in:
Peter Steinberger
2026-04-07 09:44:21 +01:00
parent 36aeef30c2
commit 54a884865e
9 changed files with 75 additions and 3 deletions

View File

@@ -10,6 +10,7 @@ const { values } = parseArgs({
"provider-base-url": { type: "string" },
image: { type: "string" },
"use-prebuilt-image": { type: "boolean" },
"bind-ui-dist": { type: "boolean" },
"skip-ui-build": { type: "boolean" },
},
allowPositionals: false,
@@ -25,6 +26,7 @@ Options:
--provider-base-url <url>
--image <name>
--use-prebuilt-image
--bind-ui-dist
--skip-ui-build
-h, --help
`);
@@ -49,5 +51,6 @@ await runQaDockerUpCommand({
providerBaseUrl: values["provider-base-url"],
image: values.image,
usePrebuiltImage: values["use-prebuilt-image"],
bindUiDist: values["bind-ui-dist"],
skipUiBuild: values["skip-ui-build"],
});