-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.js
43 lines (37 loc) · 1.22 KB
/
settings.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
// Module dependencies.
module.exports = function(app, configurations, express) {
var clientSessions = require('client-sessions');
var nconf = require('nconf');
nconf.argv().env().file({ file: 'local.json' });
// Configuration
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.set('view options', { layout: false });
app.use(express.bodyParser());
app.use(express.methodOverride());
if (!process.env.NODE_ENV) {
app.use(express.logger('dev'));
}
app.use(express.static(__dirname + '/public'));
app.use(clientSessions({
cookieName: nconf.get('session_cookie'),
secret: nconf.get('session_secret'),
duration: 24 * 60 * 60 * 1000 * 28 // 4 weeks
}));
app.use(function(req, res, next) {
res.locals.session = req.session;
res.locals.siteHost = nconf.get('domain') + ':' + nconf.get('authPort');
next();
});
app.locals.pretty = true;
app.use(app.router);
});
app.configure('development, test', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('prod', function(){
app.use(express.errorHandler());
});
return app;
};