database-ruby.yml 432 B

12345678910111213141516171819202122
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. #
  4. # Ensure the SQLite 3 gem is defined in your Gemfile
  5. # gem 'sqlite3'
  6. development:
  7. adapter: mysql2
  8. database: hello_world
  9. username: benchmarkdbuser
  10. password: benchmarkdbpass
  11. host: localhost
  12. pool: 5
  13. timeout: 5000
  14. production:
  15. adapter: mysql2
  16. database: hello_world
  17. username: benchmarkdbuser
  18. password: benchmarkdbpass
  19. host: localhost
  20. pool: 256
  21. timeout: 5000