database.yml 313 B

123456789101112131415161718
  1. development:
  2. adapter: mysql2
  3. database: hello_world
  4. username: benchmarkdbuser
  5. password: benchmarkdbpass
  6. host: localhost
  7. pool: 5
  8. timeout: 5000
  9. production:
  10. adapter: mysql2
  11. database: hello_world
  12. username: benchmarkdbuser
  13. password: benchmarkdbpass
  14. host: localhost
  15. pool: 256
  16. timeout: 5000