-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
80 lines (75 loc) · 1.63 KB
/
config.js
File metadata and controls
80 lines (75 loc) · 1.63 KB
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
var convict = require('convict')
var fs = require('fs')
// Define a schema
var conf = convict({
server: {
host: {
doc: "",
format: '*',
default: '127.0.0.1',
env: "COUCHDB_HOST"
},
port: {
doc: "",
format: Number,
default: 5984,
env: "COUCHDB_PORT"
}
},
options: {
cache: {
doc: "",
format: Boolean,
default: true
},
raw: {
doc: "",
format: Boolean,
default: false
},
forceSave: {
doc: "",
format: Boolean,
default: true
},
request: {
doc: "",
format: Object,
default: {}
},
},
env: {
doc: "The applicaton environment.",
format: ["production", "development", "test", "qa"],
default: "development",
env: "NODE_ENV",
arg: "node_env"
}
})
// Load environment dependent configuration
var env = conf.get('env')
conf.loadFile('./config/couchdb.' + env + '.json')
// Perform validation
conf.validate({strict: false})
// Load domain-specific configuration
// conf.updateConfigDataForDomain = function(domain) {
// var domainConfig = './config/' + domain + '.json';
// try {
// var stats = fs.statSync(domainConfig);
// // no error, file exists
// conf.loadFile(domainConfig);
// conf.validate({strict: false});
// }
// catch(err) {
// if (err.code === 'ENOENT') {
// //console.log('No domain-specific configuration file: ' + domainConfig);
// }
// else {
// console.log(err);
// }
// }
// };
module.exports = conf
module.exports.configPath = function() {
return './config/couchdb.' + conf.get('env') + '.json'
}