| 1234567891011121314151617 |
- default: &default
- adapter: postgresql
- user: <%= ENV['POSTGRES_USER'] %>
- password: <%= ENV['POSTGRES_PASSWORD'] %>
- pool: <%= ENV.fetch('RAILS_MAX_THREADS') { 5 } %>
- timeout: 5000
- development:
- <<: *default
- database: <%= ENV['POSTGRES_DB'] %>
- # Warning: The database defined as "test" will be erased and
- # re-generated from your development database when you run "rake".
- # Do not set this db to the same as development or production.
- test:
- <<: *default
- database: <%= ENV['POSTGRES_DB'] + "_test" %>
|