From fccd94cc11db43f99eded13207cc93fb59d8703e Mon Sep 17 00:00:00 2001 From: Janis Date: Tue, 20 Jan 2026 20:48:11 +0100 Subject: [PATCH] feat: Use environment variables for Keycloak client configuration in staging --- knockoutwhistweb/conf/staging.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/knockoutwhistweb/conf/staging.conf b/knockoutwhistweb/conf/staging.conf index b241619..e6bb98f 100644 --- a/knockoutwhistweb/conf/staging.conf +++ b/knockoutwhistweb/conf/staging.conf @@ -25,8 +25,8 @@ openid { } keycloak { - clientId = "your-keycloak-client-id" - clientSecret = "your-keycloak-client-secret" + clientId = ${?KEYCLOAK_CLIENT_ID} + clientSecret = ${?KEYCLOAK_CLIENT_SECRET} redirectUri = "https://st.knockout.janis-eccarius.de/api/auth/keycloak/callback" authUrl = ${?KEYCLOAK_AUTH_URL} authUrl = "https://identity.janis-eccarius.de/realms/master"