forked from dimastopel/certdepot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
executable file
·34 lines (25 loc) · 930 Bytes
/
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
module.exports = function(app, express, mongoose){
var config = this;
//generic config
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.compress());
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
app.use(express.favicon(__dirname + '/public/img/award-certificate-icon.ico'));
});
//env specific config
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
//app.mongoose.connect('mongodb://localhost/nodemvr');
});
app.configure('production', function(){
app.use(express.errorHandler());
//app.mongoose.connect('mongodb://flame.mongohq.com:27087/nodemvr');
//app.mongoose.connect('mongodb://localhost/nodemvr');
});
return config;
};