Advertisement
Guest User

Untitled

a guest
Aug 6th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. test:
  2. adapter: postgresql
  3. encoding: utf8
  4. database: canvas_test
  5. host: localhost
  6. username: canvas
  7. timeout: 5000
  8. queue:
  9. adapter: postgresql
  10. encoding: utf8
  11. database: canvas_queue_test
  12. host: localhost
  13. username: canvas
  14. timeout: 5000
  15.  
  16. development:
  17. adapter: postgresql
  18. encoding: utf8
  19. database: canvas_development
  20. host: localhost
  21. username: canvas
  22. timeout: 5000
  23. queue:
  24. adapter: postgresql
  25. encoding: utf8
  26. database: canvas_queue_development
  27. host: localhost
  28. username: canvas
  29. timeout: 5000
  30.  
  31. production:
  32. adapter: postgresql
  33. encoding: utf8
  34. database: canvas_production
  35. host: localhost
  36. username: canvas
  37. password: your_password
  38. timeout: 5000
  39. queue:
  40. adapter: postgresql
  41. encoding: utf8
  42. database: canvas_queue_production
  43. host: localhost
  44. username: canvas
  45. password: your_password
  46. timeout: 5000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement