Files
NodeBB/config.default.js

33 lines
471 B
JavaScript
Raw Normal View History

var config = {
"secret": 'nodebb-secret',
2013-04-23 16:51:39 -04:00
"base_url": "http://localhost",
"port": 4567,
"mailer": {
host: 'localhost',
port: '25',
from: 'mailer@localhost.lan'
},
"redis": {
port: "6379",
host: "127.0.0.1",
options: {
}
},
"twitter": {
"key": '',
"secret": ''
2013-05-02 12:45:22 -04:00
},
"google": {
"id": '',
"secret": ''
2013-05-02 15:57:43 -04:00
},
"facebook": {
"app_id": '',
"secret": ''
}
}
2013-04-23 16:51:39 -04:00
config.url = config.base_url + ':' + config.port + '/';
module.exports = config;