From d552574662736eecd6a462dde126a9f8843f2e2a Mon Sep 17 00:00:00 2001 From: dipan dhali Date: Mon, 9 Sep 2024 23:07:44 +0530 Subject: [PATCH] Added configuration to Prod Environment.ts --- src/environments/environment.prod.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index e20c2049..954e281e 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -18,6 +18,7 @@ export let environment = { voucherCallbackUrl: window['env']['callbackUrlVou'] || 'https://webhook.site/', account: window['env']['serverApiUrlAct'] || 'http://ops.local/opsapp/api/v1', registeringInstituionId: window['env']['registeringInstitutionId'] || 'default', + g2pPaymentConfigApi: window['env']['g2pProgramConfigApi'] || 'http://localhost:8084', }, oauth: { // For connecting to Mifos X using OAuth2 Authentication change the value to true @@ -26,10 +27,23 @@ export let environment = { serverUrl: window['env']['oauthServerUrl'] || 'http://keycloak.sandbox.fynarfin.io/auth', realm: window['env']['oauthRealm'] || 'paymenthub', clientId: window['env']['oauthClientId'] || 'opsapp', + clientUUID: window['env']['oauthClientUUID'] || '', clientSecret: window['env']['oauthClientSecret'] || '', basicAuth: window['env']['oauthBasicAuth'] || true, basicAuthToken: window['env']['oauthBasicAuthToken'] || 'Y2xpZW50Og==' }, + jbpm:{ + jbpmApiUrl: window['env']['jbpmApiUrl'] || '', + containerId: window['env']['jbpmContainerId'] || '', + credentials: { + adminMaker: window['env']['jbpmCredentialsAdminMaker'] || '', + adminChecker: window['env']['jbpmCredentialsAdminChecker'] || '', + both: window['env']['jbpmCredentialsBoth'] || '' + } + }, + grafana: { + url: window['env']['grafanaUrl'] || '', + }, auth: { enabled: window['env']['authEnabled'] || false, },