database.yml 435 B

123456789101112131415161718
  1. development:
  2. adapter: <%= RUBY_PLATFORM == 'java' ? 'jdbcmysql' : 'mysql2' %>
  3. database: hello_world
  4. username: benchmarkdbuser
  5. password: benchmarkdbpass
  6. host: <%= ENV['DB_HOST'] %>
  7. pool: 5
  8. timeout: 5000
  9. production:
  10. adapter: <%= RUBY_PLATFORM == 'java' ? 'jdbcmysql' : 'mysql2' %>
  11. database: hello_world
  12. username: benchmarkdbuser
  13. password: benchmarkdbpass
  14. host: <%= ENV['DB_HOST'] %>
  15. pool: 256
  16. timeout: 5000