Guest User

Untitled

a guest
May 25th, 2017
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. import * as path from 'path';
  2.  
  3. export const config = {
  4. server: {
  5. port: 8081
  6. },
  7. googleAuth: {
  8. web: {
  9. clientID: '418025027305-3ei47v0oqcgkfkbf3750kcu5ifcoqsc1.apps.googleusercontent.com',
  10. projectID: 'hr-cms',
  11. authURI: 'https://accounts.google.com/o/oauth2/auth',
  12. tokenURI: 'https://accounts.google.com/o/oauth2/token',
  13. authProviderX509CertURL: 'https://www.googleapis.com/oauth2/v1/certs',
  14. clientSecret: 'jgrr-5tXTubiqctMdaouUt14',
  15. redirectURIs: [
  16. 'http://localhost:8081/auth/google/callback'
  17. ],
  18. javascriptOrigins: [
  19. 'http://localhost:8081'
  20. ]
  21. }
  22. },
  23. db: {
  24. database: 'hr_cms',
  25. user: 'root',
  26. password: 'root',
  27. host: 'localhost'
  28. },
  29. s3: {
  30. accessKeyID: 'AKIAI5B4VIOUZYHPDNCA',
  31. secretAccessKey: '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',
  32. autoInit: true,
  33. bucket: 'hr.cms',
  34. region: 'eu-central-1'
  35. },
  36. folders: {
  37. uploads: path.join(__dirname, '../../../uploads'),
  38. notifierTemplates: path.join(__dirname, '../../../utils/notifier/templates')
  39. }
  40. };
Add Comment
Please, Sign In to add comment