Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # File: config-2.yml
  2. #
  3. default: &default
  4. adapter: postgresql
  5. encoding: unicode
  6. pool: 5
  7. host: localhost
  8. username: foo
  9. password: bar
  10.  
  11. development:
  12. <<: *default
  13. database: customers_db_development
  14.  
  15. test:
  16. <<: *default
  17. database: customers_db_test
  18.  
  19. production:
  20. <<: *default
  21. host: 192.168.2.1
  22. database: customers_db_production
  23. username: customers_db
  24. password: adfkj3d8vjt4fjashd36
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement