From 86eb8678fe3a124aa25a45de7b91c8df6cb7b74e Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Wed, 6 May 2015 13:38:39 +0200 Subject: Add basic session and router plumbing --- config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config.js (limited to 'config.js') diff --git a/config.js b/config.js new file mode 100644 index 0000000..a3400b8 --- /dev/null +++ b/config.js @@ -0,0 +1,13 @@ +'use strict'; + +// TODO include local config + +/** + * Server port to listen on. + */ +exports.port = 3000; + +/** + * Mongoose connection URI. + */ +exports.dburi = 'mongodb://localhost/rvs'; -- cgit v1.2.1