Skip to content

Commit

Permalink
Fix Development Config
Browse files Browse the repository at this point in the history
  • Loading branch information
amoshaviv committed Mar 25, 2014
1 parent 38bffbc commit 921bb41
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions config/env/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ module.exports = {
title: 'MEAN.JS - Development Environment'
},
facebook: {
clientID: '588647347851720',
clientSecret: 'd2870185a0b41ab0ec32ac9d023be5b0',
callbackURL: 'http://local.meanjs.herokuapp.com:3000/auth/facebook/callback'
clientID: 'APP_ID',
clientSecret: 'APP_SECRET',
callbackURL: 'http://localhost:3000/auth/facebook/callback'
},
twitter: {
clientID: 'f9JcCc0xSzEUkwF5E5ZKLQ',
clientSecret: 'E9zzKZhZlZuy5T1qMsu3c75EkGf9yVwp0uAIOwtI0oM',
clientID: 'CONSUMER_KEY',
clientSecret: 'CONSUMER_SECRET',
callbackURL: 'http://localhost:3000/auth/twitter/callback'
},
google: {
clientID: '751147574067-kt9q7nnkvns3b8cg742nsddk9d77k0bt.apps.googleusercontent.com',
clientSecret: '-7acCDhnsbf22HoHB_8CkAHi',
clientID: 'APP_ID',
clientSecret: 'APP_SECRET',
callbackURL: 'http://localhost:3000/auth/google/callback'
},
linkedin: {
clientID: '77f1ywm1byjwpm',
clientSecret: 'K6D9cufcuNIjcqUr',
clientID: 'APP_ID',
clientSecret: 'APP_SECRET',
callbackURL: 'http://localhost:3000/auth/linkedin/callback'
}
};

0 comments on commit 921bb41

Please sign in to comment.