Rename start-keycloak-container -> start-keycloak
This commit is contained in:
@ -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
|
program
|
||||||
.command({
|
.command({
|
||||||
"name": "download-builtin-keycloak-theme",
|
"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
|
program
|
||||||
.command({
|
.command({
|
||||||
"name": "copy-keycloak-resources-to-public",
|
"name": "copy-keycloak-resources-to-public",
|
||||||
|
Reference in New Issue
Block a user