summaryrefslogtreecommitdiff
path: root/config.js
blob: 5c5c39432cf493a752120cb27cbd9f906f9a2fae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'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.';

/**
 * Path to the static files of the frontend.
 */
exports.frontend_path = '../RVS-frontend';