From 76162f842b8815abeef7cf6f1951c7e40a564625 Mon Sep 17 00:00:00 2001 From: mattyl006 Date: Fri, 21 Oct 2022 12:56:34 +0200 Subject: [PATCH] for heroku --- src/services/KeyCloakService.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/KeyCloakService.js b/src/services/KeyCloakService.js index 67f9547..8e55196 100644 --- a/src/services/KeyCloakService.js +++ b/src/services/KeyCloakService.js @@ -1,9 +1,9 @@ import Keycloak from 'keycloak-js'; const _kc = new Keycloak({ - url: process.env.KC_URL, - realm: process.env.KC_REALM, - clientId: process.env.KC_CLIENT_ID + url: 'https://auth-dev.csi.wmi.amu.edu.pl/', + realm: 'gonito-dev', + clientId: 'gonito-dev-heroku' }); const initKeycloak = (onAuthenticatedCallback) => {