Skip to content

Commit

Permalink
Added configuration to Prod Environment.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dipandhali2021 committed Sep 9, 2024
1 parent 43877d9 commit d552574
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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,
},
Expand Down

0 comments on commit d552574

Please sign in to comment.