Guest User

Untitled

a guest
Aug 12th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. setup: &setup
  2. adapter: postgresql
  3. enconding: utf8
  4. host: localhost
  5. pool: 5
  6. username: postgres
  7. password: postgres
  8. database: myapp_development
  9.  
  10. development:
  11. <<: *setup
  12. database: myapp_development
  13.  
  14. test: &test
  15. <<: *setup
  16. database: myapp_test
  17.  
  18. production:
  19. <<: *setup
  20. database: myapp_production
  21.  
  22. cucumber:
  23. <<: *test
Add Comment
Please, Sign In to add comment