diff options
author | Dennis Eriksen <dennis.se@gmail.com> | 2013-04-29 09:16:00 +0200 |
---|---|---|
committer | Dennis Eriksen <dennis.se@gmail.com> | 2013-04-29 09:16:00 +0200 |
commit | dd061b09ae345a272810984335cc84281b0c87ce (patch) | |
tree | b7c6d40673d3452a4a1456ba9370eca1cec986f1 /config/config.js | |
parent | Wrong location for img (diff) | |
parent | cleaning (diff) | |
download | Divid-dd061b09ae345a272810984335cc84281b0c87ce.tar.gz |
Merge branch 'dev'
Conflicts:
app.js
router.js
Diffstat (limited to 'config/config.js')
-rw-r--r-- | config/config.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/config/config.js b/config/config.js new file mode 100644 index 0000000..50dea23 --- /dev/null +++ b/config/config.js @@ -0,0 +1,25 @@ +var path = require('path') + , rootPath = path.normalize(__dirname + '/..'); + + +module.exports = { + development: { + db: 'mongodb://localhost/test', + 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" + } + } +} + + |