database.yml 376 B

1234567891011121314151617181920212223
  1. ---
  2. default: &default
  3. database: hello_world
  4. username: benchmarkdbuser
  5. password: benchmarkdbpass
  6. host: tfb-database
  7. timeout: 5000
  8. pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
  9. development:
  10. <<: *default
  11. test:
  12. <<: *default
  13. production_mysql:
  14. <<: *default
  15. adapter: trilogy
  16. production_postgresql:
  17. <<: *default
  18. adapter: postgresql
  19. encoding: unicode