Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
86
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: <%= ENV['USERNAME'] %>
  6. password: <%= ENV['PASSWORD'] %>
  7. host: <%= ENV['IP'] %>
  8.  
  9.  
  10.  
  11. development:
  12. <<: *default
  13. database: sample_app_development
  14.  
  15. test:
  16. <<: *default
  17. database: sample_app_test
  18.  
  19. production:
  20. <<: *default
  21. database: sample_app_production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement