summaryrefslogtreecommitdiff
path: root/config.js
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-05-06 13:38:39 +0200
committerPeter Wu <peter@lekensteyn.nl>2015-05-06 13:38:39 +0200
commit86eb8678fe3a124aa25a45de7b91c8df6cb7b74e (patch)
treedbad5ef2ca1e271647eec9bbaeb776cb5feb8c64 /config.js
parentca204408069c1f02ad04edd48c60188ccbe55974 (diff)
downloadn-86eb8678fe3a124aa25a45de7b91c8df6cb7b74e.tar.gz
Add basic session and router plumbing
Diffstat (limited to 'config.js')
-rw-r--r--config.js13
1 files changed, 13 insertions, 0 deletions
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';