-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.ts
More file actions
25 lines (17 loc) · 846 Bytes
/
environment.ts
File metadata and controls
25 lines (17 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// This file can be replaced during build by using the `fileReplacements` array.
// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
// The list of file replacements can be found in `angular.json`.
export const environment = {
production: false,
name: 'local-dev',
description: '[local-dev]',
tooltip: 'LOCAL-DEV',
/** local storage key used to store the credentials */
authLocalStorageKey: 'datapipeui-local-dev-auth',
/** IRIS API url. IRIS REST APIs URLs will be formed using this url */
urlIRISApi: 'http://localhost:52773/dpipe/api',
/** IRIS url. Access to IRIS management portal (e.g. View Trace) will use this url */
urlIRIS: 'http://localhost:52773/csp/:namespace',
/** IRIS url that will be used if no namespace in Inbox */
urlIRISDefault: 'http://localhost:52773/csp/dpipe',
};