Guest User

Untitled

a guest
May 22nd, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. module.exports = {
  2. development: {
  3. db: {
  4. metaData: {
  5. name: "MSSQL",
  6. version: "***"
  7. },
  8. dbAcessInformations: [
  9. {
  10. customerId: 1,
  11. customerName: "ICE",
  12. dbCredentials: {
  13. user: 'root',
  14. password: '***',
  15. server: 'host',
  16. database: 'ICE',
  17. pool: {
  18. "idleTimeoutMillis": 300000,
  19. "max": 100
  20. },
  21. options: {
  22. encrypt: true
  23. }
  24. }
  25. }, {
  26. customerId: 2,
  27. customerName: "IBA",
  28. dbCredentials: {
  29. user: 'root',
  30. password: '***',
  31. server: 'host',
  32. database: 'IBA',
  33. pool: {
  34. "idleTimeoutMillis": 300000,
  35. "max": 100
  36. },
  37. options: {
  38. encrypt: true
  39. }
  40. }
  41. }, {
  42. customerId: 3,
  43. customerName: "NEX",
  44. dbCredentials: {
  45. user: 'root',
  46. password: '***',
  47. server: 'host',
  48. database: 'NEX',
  49. pool: {
  50. "idleTimeoutMillis": 300000,
  51. "max": 100
  52. },
  53. options: {
  54. encrypt: true
  55. }
  56. }
  57. }
  58. ]
  59. },
  60. port: 3000
  61. },
  62. utilServices: {
  63. emailService: {
  64. endPoint: "http://abc.com",
  65. isAuthenticationRequired: true,
  66. authentication: {}
  67. }
  68. }
  69. };
Add Comment
Please, Sign In to add comment