diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | config/config.js | 30 |
2 files changed, 3 insertions, 30 deletions
@@ -42,3 +42,6 @@ results npm-debug.log node_modules + +# config file +config/config.js diff --git a/config/config.js b/config/config.js deleted file mode 100644 index c7ff42a..0000000 --- a/config/config.js +++ /dev/null @@ -1,30 +0,0 @@ -var path = require('path') - , rootPath = path.normalize(__dirname + '/..'); - - -module.exports = { - development: { - db: 'mongodb://localhost/Divid' - , root: rootPath - , app: { - name: 'Divid' - } - , facebook: { - clientID: '504825706245603' - , clientSecret: 'e5ea0faed85d8749cafd38732530ef35' - , callbackURL: 'https://divid.no/auth/facebook/callback' - } - , twitter: { - clientID: 'tpCfKBUyAfogTpFxnb9w' - , clientSecret: 'abzInK4Nu0IFUhyXl73O2XjlFLFlzmBtLmbXk6v8' - , callbackURL: 'https://divid.no/auth/twitter/callback' - } - , email: { - server: 'localhost' - , ssl: false - } - , sessionSecret: 'lsdrghoi4hgqio42nqf2uqi32f3bilu23fl23b' - } -} - - |