mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-21 06:42:28 +01:00
23 lines
502 B
JavaScript
23 lines
502 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: ''
|
|
}
|
|
},
|
|
facebook: {
|
|
clientID: process.env.FACEBOOK_ID || 'APP_ID',
|
|
clientSecret: process.env.FACEBOOK_SECRET || 'APP_SECRET',
|
|
callbackURL: '/auth/facebook/callback'
|
|
}
|
|
};
|
|
*/ |