Skip to content

Commit 89d4c8b

Browse files
Use environment variables for app URLs with localhost fallback
1 parent d16b5a2 commit 89d4c8b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

config/test-config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
* Application URLs
1010
*/
1111
export const APP_URLS = {
12-
angular: 'http://localhost:4200',
13-
api: 'https://localhost:44378/api/v1',
14-
identityServer: 'https://localhost:44310',
12+
angular: process.env.ANGULAR_APP_URL || 'http://localhost:4200',
13+
api: process.env.API_APP_URL || 'https://localhost:44378/api/v1',
14+
identityServer: process.env.IDENTITY_SERVER_URL || 'https://localhost:44310',
1515
} as const;
1616

1717
/**

0 commit comments

Comments
 (0)