summaryrefslogtreecommitdiff
path: root/config.js
blob: 372c5428cb592851e33a5cefcbbd95e3264120ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict';

// TODO include local config

/**
 * Server port to listen on.
 */
exports.port = 3000;

/**
 * Mongoose connection URI.
 */
exports.dburi = 'mongodb://localhost/rvs';

/**
 * Secret which signs session ID cookies.
 * https://github.com/expressjs/session#secret
 */
exports.session_secret = 'Very safe. Much secret. Wow.';