Rename development realm to not contain space

This commit is contained in:
Paul Bienkowski 2021-11-17 18:33:52 +01:00
parent b6aa0cb1c9
commit b541f0b3fe
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ Now navigate to http://localhost:3003/ and follow these steps:
* Click "Administration Console" and log in with `admin` / `admin` * Click "Administration Console" and log in with `admin` / `admin`
* Hover over the realm name on the top left and click "Add realm" * Hover over the realm name on the top left and click "Add realm"
* Name the Realm `OBS Dev` (spelling matters) and create it * Name the Realm `obs-dev` (spelling matters) and create it
* In the sidebar, navigate to Configure -> Clients, and click "Create" on the top right * In the sidebar, navigate to Configure -> Clients, and click "Create" on the top right
* Client ID is `portal`. Hit "Save". * Client ID is `portal`. Hit "Save".
* In the Tab "Settings", edit the new client's "Access Type" to `confidential` * In the Tab "Settings", edit the new client's "Access Type" to `confidential`

View file

@ -4,7 +4,7 @@ DEBUG = False
AUTO_RESTART = True AUTO_RESTART = True
SECRET = "!!!!!!!!!!!!CHANGE ME!!!!!!!!!!!!" SECRET = "!!!!!!!!!!!!CHANGE ME!!!!!!!!!!!!"
POSTGRES_URL = "postgresql+asyncpg://obs:obs@postgres/obs" POSTGRES_URL = "postgresql+asyncpg://obs:obs@postgres/obs"
KEYCLOAK_URL = "http://keycloak:8080/auth/realms/OBS%20Dev/" KEYCLOAK_URL = "http://keycloak:8080/auth/realms/obs-dev/"
KEYCLOAK_CLIENT_ID = "portal" KEYCLOAK_CLIENT_ID = "portal"
KEYCLOAK_CLIENT_SECRET = "76b84224-dc24-4824-bb98-9e1ba15bd58f" KEYCLOAK_CLIENT_SECRET = "76b84224-dc24-4824-bb98-9e1ba15bd58f"
DEDICATED_WORKER = True DEDICATED_WORKER = True