-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.ts
178 lines (176 loc) · 4 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
import { default as convict } from 'convict';
import { v4 as uuidv4 } from 'uuid';
const config = convict({
abstractapiApiKey: {
default: null,
doc: 'API key for abstractapi.com',
env: 'ABSTRACTAPI_API_KEY',
format: String,
sensitive: true,
},
astroipApiKey: {
default: null,
doc: 'API key for astroip.co',
env: 'ASTROIP_API_KEY',
format: String,
sensitive: true,
},
bigdatacloudApiKey: {
default: null,
doc: 'API key for bigdatacloud.com',
env: 'BIGDATACLOUD_API_KEY',
format: String,
sensitive: true,
},
brandfetchApiKey: {
default: null,
doc: 'API key for brandfetch.com',
env: 'BRANDFETCH_API_KEY',
format: String,
sensitive: true,
},
buildId: {
default: process.env.COMMIT || `local@${new Date().getTime()}`,
doc: 'Unique Build ID (commit hash or timestamp) for cache busting',
env: 'BUILD_ID',
format: String
},
companyenrichAccessKey: {
default: null,
doc: 'Access key for companyenrich.com',
env: 'COMPANYENRICH_ACCESS_KEY',
format: String,
sensitive: true,
},
ip2locationApiKey: {
default: null,
doc: 'API key for ip2location.com',
env: 'IP2LOCATION_API_KEY',
format: String,
sensitive: true,
},
ip2locationPackage: {
default: 'ws5',
doc: 'Package (=how much data in results) for ip2location.com',
env: 'IP2LOCATION_PACKAGE',
format: String,
},
ip2locationioApiKey: {
default: null,
doc: 'API key for ip2location.io',
env: 'IP2LOCATIONIO_API_KEY',
format: String,
sensitive: true,
},
ipapiAccessKey: {
default: null,
doc: 'ACCESS_KEY for ipapi.com',
env: 'IPAPI_ACCESS_KEY',
format: String,
sensitive: true,
},
ipapiisApiKey: {
default: null,
doc: 'API key for ipapi.is',
env: 'IPAPIIS_API_KEY',
format: String,
sensitive: true,
},
ipdataApiKey: {
default: null,
doc: 'API_KEY for ipdata.co',
env: 'IPDATA_API_KEY',
format: String,
sensitive: true,
},
ipGeoLocationApiKey: {
default: null,
doc: 'API_KEY for ipgeolocation.io',
env: 'IPGEOLOCATION_API_KEY',
format: String,
sensitive: true,
},
ipinfoAccessToken: {
default: null,
doc: 'ACCESS_TOKEN for ipinfo.io',
env: 'IPINFO_ACCESS_TOKEN',
format: String,
sensitive: true,
},
ipinsightToken: {
default: null,
doc: 'API key for ipinsight.io',
env: 'IPINSIGHT_TOKEN',
format: String,
sensitive: true,
},
ipstackApiKey: {
default: null,
doc: 'API key for ipstack.com',
env: 'IPSTACK_API_KEY',
format: String,
sensitive: true,
},
ipregistryApiKey: {
default: null,
doc: 'API key for ipregistry.co',
env: 'IPREGISTRY_API_KEY',
format: String,
sensitive: true,
},
labstackApiKey: {
default: null,
doc: 'API key for labstack.com',
env: 'LABSTACK_API_KEY',
format: String,
sensitive: true,
},
logLevel: {
default: 'debug',
doc: 'pino logging level [fatal, error, warn, info, debug, trace]',
env: 'LOG_LEVEL',
format: ['fatal', 'error', 'warn', 'info', 'debug', 'trace'],
},
logodevToken: {
default: null,
doc: 'API token for logodev.com',
env: 'LOGODEV_TOKEN',
format: String,
sensitive: true,
},
maxmindUrlBase: {
default: null,
doc: 'Base URL for encrypted MaxMind data files',
env: 'MAXMIND_URL_BASE',
format: String,
sensitive: true,
},
mmdbKey: {
default: null,
doc: 'Random key for encrypting mmdb files',
env: 'MMDB_ENCRYPTION_KEY',
format: String,
sensitive: true,
},
port: {
default: 4000,
doc: 'TCP port at which this service listens',
env: 'PORT',
format: 'int',
},
radarioApiKey: {
default: null,
doc: 'API key for radar.io',
env: 'RADARIO_API_KEY',
format: String,
sensitive: true,
},
sessionKey: {
default: uuidv4(),
doc: 'Random key for encrypting session',
env: 'SESSION_KEY',
format: String,
sensitive: true,
},
});
export default config;