Use correct feature flag name in docs (#1833)

This commit is contained in:
Jon Koops 2022-01-07 13:01:58 +01:00 committed by GitHub
parent 2d5c66b108
commit 439212c4b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ For development on this project you will need a running Keycloak server listenin
git checkout git@github.com:keycloak/keycloak-admin-ui.git
cd keycloak-admin-ui
docker build -t keycloak-v2 .
docker run --name keycloak-v2 -d -p 127.0.0.1:8080:8080 -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin keycloak-v2 -Dprofile.feature.newadmin=enabled
docker run --name keycloak-v2 -d -p 127.0.0.1:8080:8080 -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin keycloak-v2 -Dkeycloak.profile.feature.admin2=enabled
You can reach the new admin interface at `http://localhost:8080`. Then go to `Realm Settings --> Themes` and set Admin Console Theme to `keycloak.v2`.

View file

@ -19,7 +19,7 @@ For development, you can also just copy the contents of `./target/classes` to `<
Until New Admin Console becomes the default, you will need to start Keycloak server like this:
```bash
$> bin/standalone.sh -Dprofile.feature.newadmin=enabled
$> bin/standalone.sh -Dkeycloak.profile.feature.admin2=enabled
```
Then go to `Realm Settings --> Themes` and set Admin Console Theme to `keycloak.v2`.