Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1.  
  2. /**
  3. * Expose
  4. */
  5.  
  6. module.exports = {
  7. port: 3000,
  8. db: 'mongodb://localhost/hopskoc',
  9. //db: 'mongodb://MongoLab-sd:03MmAzF0EWG5HrUtAm3rNLZE6thNA3B0QvzUAbcjJuc-@ds034198.mongolab.com:34198/MongoLab-sd',
  10. firebase: 'https://noteslate.firebaseio.com/',
  11. firebase_secret: 'pfEJbjZAl52rM6aQRWytrwBnjpAx5Zgs4rltqE3J',
  12. facebook: {
  13. clientID: 'APP_ID',
  14. clientSecret: 'SECRET',
  15. callbackURL: 'http://localhost:3000/auth/facebook/callback',
  16. scope: [
  17. 'email',
  18. 'user_about_me',
  19. 'user_friends'
  20. ]
  21. },
  22. google: {
  23. clientID: 'APP_ID',
  24. clientSecret: 'SECRET',
  25. callbackURL: 'http://localhost:3000/auth/google/callback',
  26. scope: [
  27. 'https://www.googleapis.com/auth/userinfo.profile',
  28. 'https://www.googleapis.com/auth/userinfo.email',
  29. 'https://www.google.com/m8/feeds'
  30. ]
  31. },
  32. jwt: {
  33. secret: 'NotASercret',
  34. lifetime: 3600
  35. },
  36. auth_enabled: true,
  37. sendgrid: {
  38. api_key: "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",
  39. from: "info@mail.noteslate.ack.ee"
  40. },
  41. formuser:{
  42. id: -1,
  43. name: 'Pan Unicorn',
  44. login: 'panunicorn',
  45. password: 'unicorn'
  46. },
  47. cloudinary:{
  48. config:{
  49. cloud_name: 'cloudpanapalacinky',
  50. api_key: '478153744398933',
  51. api_secret: 'LHq-eLc06_u3hF3jRQ6E9P9Uf4I'
  52. }
  53. },
  54. tempFileAddress: 'tmppic'
  55. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement