1
- // This file can be replaced during build by using the ` fileReplacements` array.
2
- // ` ng build --prod` replaces ` environment.ts` with ` environment.prod.ts` .
3
- // The list of file replacements can be found in ` angular.json` .
1
+ // This file can be replaced during build by using the ' fileReplacements' array.
2
+ // ' ng build --prod' replaces ' environment.ts' with ' environment.prod.ts' .
3
+ // The list of file replacements can be found in ' angular.json' .
4
4
import { EnvironmentType } from './enum' ;
5
5
6
6
export const environment = {
7
7
production : EnvironmentType . TT_DEV ,
8
- timeTrackerApiUrl : process . env [ ` API_URL` ] ,
8
+ timeTrackerApiUrl : process . env [ ' API_URL' ] ,
9
9
stackexchangeApiUrl : 'https://api.stackexchange.com' ,
10
10
} ;
11
11
12
12
13
13
14
- export const AUTHORITY = process . env [ ` AUTHORITY` ] ;
15
- export const CLIENT_ID = process . env [ ` CLIENT_ID` ] ;
16
- export const CLIENT_URL = process . env [ ` CLIENT_URL` ] ;
17
- export const SCOPES = process . env [ ` SCOPES` ] . split ( `,` ) ;
14
+ export const AUTHORITY = process . env [ ' AUTHORITY' ] ;
15
+ export const CLIENT_ID = process . env [ ' CLIENT_ID' ] ;
16
+ export const CLIENT_URL = process . env [ ' CLIENT_URL' ] ;
17
+ export const SCOPES = process . env [ ' SCOPES' ] . split ( ',' ) ;
18
18
export const ITEMS_PER_PAGE = 5 ;
19
- export const STACK_EXCHANGE_ID = process . env [ ` STACK_EXCHANGE_ID` ] ;
20
- export const STACK_EXCHANGE_ACCESS_TOKEN = process . env [ ` STACK_EXCHANGE_ACCESS_TOKEN` ] ;
21
- export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = process . env [ ` AZURE_APP_CONFIGURATION_CONNECTION_STRING` ] ;
19
+ export const STACK_EXCHANGE_ID = process . env [ ' STACK_EXCHANGE_ID' ] ;
20
+ export const STACK_EXCHANGE_ACCESS_TOKEN = process . env [ ' STACK_EXCHANGE_ACCESS_TOKEN' ] ;
21
+ export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = process . env [ ' AZURE_APP_CONFIGURATION_CONNECTION_STRING' ] ;
22
22
export const DATE_FORMAT = 'yyyy-MM-dd' ;
23
23
export const DATE_FORMAT_YEAR = 'YYYY-MM-DD' ;
24
24
export const GROUPS = {
@@ -39,7 +39,7 @@ export const ROLES = {
39
39
40
40
/*
41
41
* For easier debugging in development mode, you can import the following file
42
- * to ignore zone related error stack frames such as ` zone.run`, ` zoneDelegate.invokeTask` .
42
+ * to ignore zone related error stack frames such as ' zone.run', ' zoneDelegate.invokeTask' .
43
43
*
44
44
* This import should be commented out in production mode because it will have a negative impact
45
45
* on performance if an error is thrown.
0 commit comments