Skip to content

Commit a70b3c1

Browse files
Task #0000: Fix for the env variables delay
1 parent 3e5c2ab commit a70b3c1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/environments/environment.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ const getEnvValue = (key: string, fallback: any) => {
1515
export const environment: IEnvironment = {
1616
name: getEnvValue('name', 'Multi-Tenant Portal'),
1717
production: getEnvValue('production', false),
18-
contentHost: getEnvValue('contentHost', ''),
18+
contentHost: getEnvValue('contentHost', 'https://portal.mauritius.igotkarmayogi.gov.in'),
1919
contentBucket: getEnvValue('contentBucket', 'assets/public'),
2020
baseUrl: getEnvValue('baseUrl', ''),
21-
portalURL: getEnvValue('portalURL', ''),
22-
learnerPortalURL: getEnvValue('portalURL', ''),
23-
telmetryUrl: getEnvValue('telmetryUrl', ''),
21+
portalURL: getEnvValue('portalURL', 'https://portal.mauritius.igotkarmayogi.gov.in'),
22+
learnerPortalURL: getEnvValue('portalURL', 'https://portal.mauritius.igotkarmayogi.gov.in'),
23+
telmetryUrl: getEnvValue('telmetryUrl', 'https://mauritius.igotkarmayogi.gov.in'),
2424
tenantName: getEnvValue('tenantName', 'tenant4'),
25-
igotUrl: getEnvValue('igotUrl', ''),
25+
igotUrl: getEnvValue('igotUrl', 'https://igotkarmayogi.gov.in'),
2626
}
2727
interface IEnvironment {
2828
name: string,

0 commit comments

Comments
 (0)