Advertisement
Guest User

Untitled

a guest
Sep 11th, 2016
84
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. username: <%= ENV["PGSQL_USER"] %>
  5. password: '<%= ENV["PGSQL_PASSWD"] %>'
  6. host: <%= ENV['HOSTNAME'] %>
  7. port: 5432
  8.  
  9. development:
  10. <<: *default
  11. database: db
  12.  
  13. test:
  14. <<: *default
  15. database: db_site_test
  16.  
  17. production:
  18. <<: *default
  19. database: db_site_production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement