Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. // Update with your config settings.
  2.  
  3. module.exports = {
  4.  
  5. development: {
  6. client: 'postgresql',
  7. connection: {
  8. database: 'b-loggr',
  9. user: 'admin',
  10. password: 'admin'
  11. },
  12. pool: {
  13. min: 2,
  14. max: 10
  15. },
  16. migrations: {
  17. tableName: 'knex_migrations'
  18. }
  19. },
  20.  
  21. staging: {
  22. client: 'postgresql',
  23. connection: {
  24. database: 'my_db',
  25. user: 'username',
  26. password: 'password'
  27. },
  28. pool: {
  29. min: 2,
  30. max: 10
  31. },
  32. migrations: {
  33. tableName: 'knex_migrations'
  34. }
  35. },
  36.  
  37. production: {
  38. client: 'postgresql',
  39. connection: {
  40. database: 'my_db',
  41. user: 'username',
  42. password: 'password'
  43. },
  44. pool: {
  45. min: 2,
  46. max: 10
  47. },
  48. migrations: {
  49. tableName: 'knex_migrations'
  50. }
  51. }
  52.  
  53. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement