Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. default: &default
  2. adapter: postgresql
  3. encoding: unicode
  4. pool: 5
  5. timeout: 5000
  6. username: <%= ENV['POSTGRES_USERNAME'] %>
  7. password: <%= ENV['POSTGRES_PASSWORD'] %>
  8. host: localhost
  9.  
  10. development:
  11. database: project_name
  12. <<: *default
  13.  
  14. # Warning: The database defined as "test" will be erased and
  15. # re-generated from your development database when you run "rake".
  16. # Do not set this db to the same as development or production.
  17. test:
  18. database: project_name_test
  19. <<: *default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement