database.yml 574 B

1234567891011121314151617181920212223242526
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. development:
  4. adapter: sqlite3
  5. database: db/development.sqlite3
  6. pool: 5
  7. timeout: 5000
  8. # Warning: The database defined as "test" will be erased and
  9. # re-generated from your development database when you run "rake".
  10. # Do not set this db to the same as development or production.
  11. test:
  12. adapter: sqlite3
  13. database: db/test.sqlite3
  14. pool: 5
  15. timeout: 5000
  16. production:
  17. adapter: mysql
  18. encoding: utf8
  19. reconnect: false
  20. database: depot_production
  21. pool: 5
  22. username: username
  23. password: password
  24. host: localhost