mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-29 18:49:20 +01:00
25 lines
616 B
JavaScript
25 lines
616 B
JavaScript
'use strict';
|
|
|
|
// Rename this file to local.js for having a local configuration variables that
|
|
// will not get commited and pushed to remote repositories.
|
|
// Use it for your API keys, passwords, etc.
|
|
|
|
/* For example:
|
|
|
|
module.exports = {
|
|
db: {
|
|
uri: 'mongodb://localhost/local-dev',
|
|
options: {
|
|
user: '',
|
|
pass: ''
|
|
}
|
|
},
|
|
sessionSecret: process.env.SESSION_SECRET || 'youshouldchangethistosomethingsecret',
|
|
facebook: {
|
|
clientID: process.env.FACEBOOK_ID || 'APP_ID',
|
|
clientSecret: process.env.FACEBOOK_SECRET || 'APP_SECRET',
|
|
callbackURL: '/api/auth/facebook/callback'
|
|
}
|
|
};
|
|
*/
|