database.yml 335 B

12345678910111213141516171819202122232425
  1. ---
  2. _: &common
  3. database: hello_world
  4. username: benchmarkdbuser
  5. password: benchmarkdbpass
  6. host: tfb-database
  7. timeout: 5000
  8. development:
  9. <<: *common
  10. pool: 5
  11. test:
  12. <<: *common
  13. pool: 64
  14. production_mysql:
  15. <<: *common
  16. adapter: mysql2
  17. pool: 64
  18. production_postgresql:
  19. <<: *common
  20. adapter: postgresql
  21. pool: 64