Rename start-keycloak-container -> start-keycloak

This commit is contained in:
Joseph Garrone 2024-05-18 10:48:47 +02:00
parent b48bccb706
commit 49bb276c78
2 changed files with 15 additions and 15 deletions

View File

@ -60,6 +60,21 @@ program
})
});
program
.command({
"name": "start-keycloak",
"description": "Spin up a pre configured Docker image of Keycloak to test your theme."
})
.task({
skip,
"handler": cliCommandOptions =>
runAndLogErrors(async () => {
const { command } = await import("./start-keycloak");
await runAndLogErrors(() => command({ cliCommandOptions }));
})
});
program
.command({
"name": "download-builtin-keycloak-theme",
@ -105,21 +120,6 @@ program
})
});
program
.command({
"name": "start-keycloak-container",
"description": "Spin up a Keycloak container with the theme preloaded and the realm pre configured."
})
.task({
skip,
"handler": cliCommandOptions =>
runAndLogErrors(async () => {
const { command } = await import("./start-keycloak-container");
await runAndLogErrors(() => command({ cliCommandOptions }));
})
});
program
.command({
"name": "copy-keycloak-resources-to-public",