1234567891011121314151617181920212223 |
- ---
- default: &default
- database: hello_world
- username: benchmarkdbuser
- password: benchmarkdbpass
- host: tfb-database
- timeout: 5000
- pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
- development:
- <<: *default
- test:
- <<: *default
- production_mysql:
- <<: *default
- adapter: trilogy
- production_postgresql:
- <<: *default
- adapter: postgresql
- encoding: unicode
|