database.yml 458 B

1234567891011121314151617181920212223242526272829
  1. default: &default
  2. adapter: postgresql
  3. encoding: unicode
  4. port: 5432
  5. username: rocketeer
  6. password:
  7. database: contactrocket
  8. schema_search_path: public,shared_extensions
  9. pool: 10
  10. development:
  11. adapter: postgresql
  12. encoding: unicode
  13. host: localhost
  14. port: 5432
  15. username: postgres
  16. password: postgres
  17. database: contactrocket
  18. schema_search_path: public,shared_extensions
  19. pool: 10
  20. test:
  21. <<: *default
  22. production:
  23. <<: *default