-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
34 lines (29 loc) · 1.04 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
//
// Project Configuration
//
module.exports = function(app){
// Create Safe Reference to the Environment Variable
var environment = process.env.NODE_ENV ? process.env.NODE_ENV.toLowerCase() : null ;
// =======================================================
// Local
// =======================================================
if(environment == 'local' || !environment){
return {
host: 'http://localhost:5000'
}
// =======================================================
// Development
// =======================================================
} else if (environment == 'development' || environment == 'dev') {
return {
host: 'http://localhost:5000'
}
// =======================================================
// Production
// =======================================================
} else if (environment == 'production') {
return {
host: 'http://localhost:5000'
}
}
}