modifying start-server.js to work on windows (#26892)
Signed-off-by: dipeshsingh253 <sinhdipesh@gmail.com>
This commit is contained in:
parent
d2f74dd83d
commit
1a823e8733
2 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"wireit": {
|
"wireit": {
|
||||||
"start": {
|
"start": {
|
||||||
"command": "./scripts/start-server.js",
|
"command": "node ./scripts/start-server.js",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"../../libs/keycloak-admin-client:build"
|
"../../libs/keycloak-admin-client:build"
|
||||||
]
|
]
|
||||||
|
|
|
@ -40,10 +40,11 @@ async function startServer() {
|
||||||
[
|
[
|
||||||
"start-dev",
|
"start-dev",
|
||||||
"--http-port=8180",
|
"--http-port=8180",
|
||||||
"--features=account3,admin-fine-grained-authz,transient-users",
|
`--features="account3,admin-fine-grained-authz,transient-users"`,
|
||||||
...keycloakArgs,
|
...keycloakArgs,
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
|
shell: true,
|
||||||
env: {
|
env: {
|
||||||
KEYCLOAK_ADMIN: ADMIN_USERNAME,
|
KEYCLOAK_ADMIN: ADMIN_USERNAME,
|
||||||
KEYCLOAK_ADMIN_PASSWORD: ADMIN_PASSWORD,
|
KEYCLOAK_ADMIN_PASSWORD: ADMIN_PASSWORD,
|
||||||
|
|
Loading…
Reference in a new issue