diff options
author | Dennis Eriksen <dennis.se@gmail.com> | 2013-05-27 13:39:23 +0200 |
---|---|---|
committer | Dennis Eriksen <dennis.se@gmail.com> | 2013-05-27 13:39:23 +0200 |
commit | 7bf061e87ce770d87f7b9c7193c7e9e6f925703e (patch) | |
tree | 368894b145ab7dbced3998a6af43b5f1783d257f | |
parent | added link to bachelor branch (diff) | |
download | Divid-7bf061e87ce770d87f7b9c7193c7e9e6f925703e.tar.gz |
removed config file with sesitive information
-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' - } -} - - |