mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-07 20:50:59 +01:00
30 lines
777 B
JavaScript
30 lines
777 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
db: 'mongodb://localhost/mean-test',
|
|
port: 3001,
|
|
app: {
|
|
name: 'MEAN - A Modern Stack - Test'
|
|
},
|
|
facebook: {
|
|
clientID: 'APP_ID',
|
|
clientSecret: 'APP_SECRET',
|
|
callbackURL: 'http://localhost:3000/auth/facebook/callback'
|
|
},
|
|
twitter: {
|
|
clientID: 'CONSUMER_KEY',
|
|
clientSecret: 'CONSUMER_SECRET',
|
|
callbackURL: 'http://localhost:3000/auth/twitter/callback'
|
|
},
|
|
github: {
|
|
clientID: 'APP_ID',
|
|
clientSecret: 'APP_SECRET',
|
|
callbackURL: 'http://localhost:3000/auth/github/callback'
|
|
},
|
|
google: {
|
|
clientID: 'APP_ID',
|
|
clientSecret: 'APP_SECRET',
|
|
callbackURL: 'http://localhost:3000/auth/google/callback'
|
|
}
|
|
};
|