database.yml 650 B

1234567891011121314151617181920212223242526272829
  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: sqlite3
  8. database: db/development.sqlite3
  9. pool: 5
  10. timeout: 5000
  11. # Warning: The database defined as "test" will be erased and
  12. # re-generated from your development database when you run "rake".
  13. # Do not set this db to the same as development or production.
  14. test:
  15. adapter: sqlite3
  16. database: db/test.sqlite3
  17. pool: 5
  18. timeout: 5000
  19. production:
  20. adapter: mysql2
  21. encoding: utf8
  22. reconnect: false
  23. database: depot_production
  24. pool: 5
  25. username: username
  26. password: password
  27. host: localhost