Advertisement
Guest User

Untitled

a guest
Jul 30th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var config = {
  2.     development: {
  3.         database: {
  4.             name: 'itw',
  5.             username: 'root',
  6.             password: 'root1234',
  7.             config: {
  8.                 host: 'localhost',
  9.                 dialect: 'mysql',
  10.                 pool: {
  11.                     max: 5,
  12.                     min: 0,
  13.                     idle: 10000
  14.                 }
  15.             }
  16.         },
  17.         pusher: {
  18.             appId: '335120',
  19.             key: 'a77c6db33a10e6568489',
  20.             secret: 'b13414eb5d0f8eb9e0b2',
  21.             cluster: 'eu',
  22.             encrypted: true,
  23.             default_channel: "my-channel",
  24.             default_event: "my-event"
  25.         },
  26.         force: true, // forcing sequelizer to drop tables
  27.         port: 8000,
  28.         facebook: {
  29.             clientID: '2302852559940509',
  30.             clientSecret: '382582a92053617bffbb673817356d68',
  31.             callbackURL: 'http://localhost:8000/users/auth/facebook/callback'
  32.         }
  33.     },
  34.  
  35. };
  36.  
  37. // change in case of production
  38. module.exports = config.development;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement