From 541d2428eeca4157915218f3f816286c88bddd59 Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Mon, 27 May 2013 13:48:49 +0200 Subject: added config example --- config/config.example.js | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 config/config.example.js (limited to 'config') diff --git a/config/config.example.js b/config/config.example.js new file mode 100644 index 0000000..d4625e3 --- /dev/null +++ b/config/config.example.js @@ -0,0 +1,30 @@ +var path = require('path') + , rootPath = path.normalize(__dirname + '/..'); + + +module.exports = { + development: { + db: 'mongodb://localhost/Divid' + , root: rootPath + , app: { + name: 'Divid' + } + , facebook: { + clientID: '' + , clientSecret: '' + , callbackURL: 'https://divid.no/auth/facebook/callback' + } + , twitter: { + clientID: '' + , clientSecret: '' + , callbackURL: 'https://divid.no/auth/twitter/callback' + } + , email: { + server: 'localhost' + , ssl: false + } + , sessionSecret: 'lsdrghoi4hgqio42nqf2uqi32f3bilu23fl23b' + } +} + + -- cgit v1.2.3