-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathenvironment.prod.ts
30 lines (29 loc) · 1008 Bytes
/
environment.prod.ts
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
26
27
28
29
30
/**
* Copyright 2022 Amazon.com, Inc. and its affiliates. All Rights Reserved.
*
* Licensed under the Amazon Software License (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/asl/
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
export const environment = {
production: true,
NG_APP_NAME: process.env["CUSTOMER_NAME"] ?? "Smart Battery Manager",
NG_APP_LOGO: process.env["CUSTOMER_LOGO"] ?? "/assets/logos/logo.png",
NG_APP_API: "",
NG_APP_REGION: "",
NG_APP_USER_POOL_ID: "",
NG_APP_IDENTITY_POOL_ID: "",
NG_APP_APP_CLIENT_ID: "",
NG_APP_DATASET_URI: "",
NG_APP_PLUGIN_URI: "",
development: false,
API_GW_URL: "",
EATRON_API_KEY: "",
};