Add cookie secrets to env

This commit is contained in:
Berkeley Martinez
2015-06-04 12:42:13 -07:00
parent 02b195511e
commit 72fe9c2463
3 changed files with 20 additions and 7 deletions

View File

@ -37,10 +37,10 @@ module.exports = {
},
twitter: {
consumerKey: process.env.TWITTER_KEY,
consumerSecret: process.env.TWITTER_SECRET,
token: process.env.TWITTER_TOKEN,
tokenSecret: process.env.TWITTER_TOKEN_SECRET,
consumerKey: process.env.TWITTER_KEY,
consumerSecret: process.env.TWITTER_SECRET,
token: process.env.TWITTER_TOKEN,
tokenSecret: process.env.TWITTER_TOKEN_SECRET,
callbackURL: '/auth/twitter/callback',
passReqToCallback: true
},
@ -60,4 +60,6 @@ module.exports = {
passReqToCallback: true
},
slackHook: process.env.SLACK_WEBHOOK,
cookieSecret: process.env.COOKIE_SECRET
};