We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d16b5a2 commit 89d4c8bCopy full SHA for 89d4c8b
1 file changed
config/test-config.ts
@@ -9,9 +9,9 @@
9
* Application URLs
10
*/
11
export const APP_URLS = {
12
- angular: 'http://localhost:4200',
13
- api: 'https://localhost:44378/api/v1',
14
- identityServer: 'https://localhost:44310',
+ angular: process.env.ANGULAR_APP_URL || 'http://localhost:4200',
+ api: process.env.API_APP_URL || 'https://localhost:44378/api/v1',
+ identityServer: process.env.IDENTITY_SERVER_URL || 'https://localhost:44310',
15
} as const;
16
17
/**
0 commit comments