database.yml 259 B

1234567891011121314151617181920
  1. ---
  2. _: &common
  3. adapter: mysql2
  4. database: hello_world
  5. username: benchmarkdbuser
  6. password: benchmarkdbpass
  7. host: tfb-database
  8. timeout: 5000
  9. development:
  10. <<: *common
  11. pool: 5
  12. test:
  13. <<: *common
  14. pool: 64
  15. production:
  16. <<: *common
  17. pool: 256