Guest User

Untitled

a guest
Feb 4th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. default: &default
  2. adapter: postgresql
  3. encoding: unicode
  4. pool: 5
  5. username: postgres
  6. password: pass123
  7. host: localhost
  8. port: 5432
  9.  
  10. development:
  11. <<: *default
  12. database: app_development
  13.  
  14. test:
  15. <<: *default
  16. database: app_test
  17.  
  18. production:
  19. <<: *default
  20. database: app_production
  21. username: postgres
  22. password: pass123
Add Comment
Please, Sign In to add comment