-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.ts
129 lines (105 loc) · 3.22 KB
/
config.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Copyright 2017, Google, Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License 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.
"use strict";
// Hierarchical node.js configuration with command-line arguments, environment
// variables, and files.
import nconf from "nconf";
import path from "path";
nconf.use("memory");
//
// 1. any overrides
//
nconf.overrides({
always: "be this value"
});
nconf
// 1. Command-line arguments
.argv()
// 2. Environment variables
// NODE_ENV_SETTINGS is used to control DB schema dev/prod
// NODE_ENV is a GCP Environment Variable that cant be changed. it needs to be set to production for anything that is deployed to GCP
.env([
"NODE_ENV_SETTINGS",
"API_URL",
"DOMAIN_LINK",
"ORIGIN_LINK"
]);
export const DEXALOT_ENV = {
Dev: "development",
DevLoc: "development-loc",
Test: "fuji",
Prod: "production",
Staging: "staging"
};
let environment = getEnvironment();
nconf
// 3.1 .env file that contains sensitive info like passwords
.file("user", {
file: path.join(__dirname, "/.env." + environment.toLowerCase())
});
// Just in case we want to use the same config.json with different .env files , add @ at the end of .env.dev@1
if (environment.indexOf("@")> -1){
environment = environment.substring(0, environment.indexOf("@"));
}
nconf
// 3. Config file
.file("global", {
file: path.join(__dirname, "/config/" + environment.toLowerCase() + ".json")
});
// 4. Defaults from file
nconf.file("default", { file: path.join(__dirname, "./config/default.json") });
nconf
// 4.1 Defaults
.defaults({
// Typically you will create a bucket with the same name as your project ID.
// CLOUD_BUCKET: ""
});
let envType: string;
switch (environment) {
case DEXALOT_ENV.Prod:
envType = "prod";
break;
case DEXALOT_ENV.Staging:
envType = "staging";
break;
case DEXALOT_ENV.Test:
envType = "test";
break;
default:
envType = "dev";
}
nconf.set("ENV_TYPE", envType);
// Check for required settings
// checkConfig("AUTH_API_PASSWORD");
export function checkConfig(setting: string): void {
if (!getConfig(setting)) {
throw new Error(`You must set ${setting} as an environment variable or in config.json!`);
}
}
export function isLocalEnv(): boolean {
const activeEnv = getConfig("NODE_ENV_SETTINGS");
return activeEnv != DEXALOT_ENV.Prod && activeEnv != DEXALOT_ENV.Test && activeEnv != DEXALOT_ENV.Dev;
}
export function getEnvType(): string {
return getConfig("ENV_TYPE");
}
export function getEnvironment(): string {
return getConfig("NODE_ENV_SETTINGS") || DEXALOT_ENV.Dev;
}
export function getConfig(key: string): string {
return nconf.get(key);
}
export function setConfig(key: string, value: string): string {
return nconf.set(key, value);
}
export default nconf;