aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config/config.example.js
blob: d4625e3b239a9584de5f00cd543feb2c6e7d4b07 (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
26
27
28
29
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'
    }
}