Advertisement
Guest User

Untitled

a guest
Mar 28th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. development: &DEV
  2. adapter: postgresql
  3. encoding: unicode
  4. database: printio_dev
  5. username: den
  6. password: secret
  7. pool: 24
  8. host: localhost # Required! PostgreSQL throws permission error otherwise.
  9. port: 5433
  10. min_messages: warning
  11.  
  12. production:
  13. <<: *DEV
  14.  
  15. test:
  16. adapter: postgresql
  17. encoding: unicode
  18. database: printio_test
  19. username: den
  20. password: secret
  21. pool: 24
  22. host: localhost # Required! PostgreSQL throws permission error otherwise.
  23. port: 5433
  24. min_messages: warning
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement