-
Notifications
You must be signed in to change notification settings - Fork 15
/
config.js
111 lines (105 loc) · 2.26 KB
/
config.js
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
var convict = require('convict')
var conf = convict({
env: {
doc: 'The applicaton environment',
format: ['production', 'development', 'test'],
default: 'development',
env: 'NODE_ENV'
},
port: {
doc: 'The port to bind',
format: 'port',
default: 0,
env: 'PORT'
},
wpt: {
key: {
doc: 'WPT API key',
format: String,
default: null,
env: 'WPT_KEY'
},
url: {
doc: 'WPT API URL',
format: String,
default: 'https://www.webpagetest.org',
env: 'WPT_URL'
}
},
githubToken: {
doc: 'GitHub access token',
format: String,
default: null,
env: 'GITHUB_TOKEN'
},
email: {
sparkboxApiKey: {
doc: 'Sparkbox API key',
format: String,
default: null,
env: 'SPARKBOX_API_KEY'
}
},
database: {
uri: {
doc: 'Mongo database connection URI',
format: String,
default: null,
env: 'MONGODB_URI'
},
reposCollection: {
doc: 'Name of the collection to be used for storing repositories',
format: String,
default: 'st_repos',
env: 'COLLECTION_REPOS'
}
},
scheduling: {
checkInterval: {
doc: 'Interval at which the Scheduler checks for tests to run (in milliseconds)',
format: Number,
default: 900000,
env: 'SCHEDULING_CHECK_INTERVAL'
},
minimumInterval: {
doc: 'Minimum interval allowed for scheduled tests (in hours)',
format: Number,
default: 12,
env: 'SCHEDULING_MIN_INTERVAL'
}
},
analytics: {
googleAnalyticsId: {
doc: 'Google Analytics account ID',
format: String,
default: null,
env: 'GOOGLE_ANALYTICS_ID'
}
},
raygunApiKey: {
doc: 'Raygun API key',
format: String,
default: '',
env: 'RAYGUN_APIKEY'
},
blockList: {
doc: 'Comma-separated list of GitHub usernames to block',
format: String,
default: '',
env: 'BLOCK_LIST'
},
pagespeedApiKey: {
doc: 'Google PageSpeed Insights API key',
format: String,
default: '',
env: 'PAGESPEED_API_KEY'
}
})
try {
var env = conf.get('env')
conf.loadFile(__dirname + '/config.' + env + '.json')
conf.validate()
console.log('(*) Local config file loaded')
} catch (e) {
}
module.exports = conf