Rename start-keycloak-container -> start-keycloak
This commit is contained in:
parent
b48bccb706
commit
49bb276c78
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user