blob: 50dea238c188590b5052226ec4fc1404bc490834 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"
}
}
}
|