database.yml.dist 648 B

123456789101112131415161718192021222324252627282930
  1. production:
  2. adapter: mysql2
  3. database: zammad_prod
  4. pool: 50
  5. timeout: 5000
  6. encoding: utf8
  7. username: some_user
  8. password: some_pass
  9. host: 127.0.0.1
  10. # SQLite version 3.x
  11. # gem install sqlite3
  12. #
  13. # Ensure the SQLite 3 gem is defined in your Gemfile
  14. # gem 'sqlite3'
  15. development:
  16. adapter: sqlite3
  17. database: db/development.sqlite3
  18. timeout: 5000
  19. pool: 50
  20. # Warning: The database defined as "test" will be erased and
  21. # re-generated from your development database when you run "rake".
  22. # Do not set this db to the same as development or production.
  23. test:
  24. adapter: sqlite3
  25. database: db/test.sqlite3
  26. timeout: 5000
  27. pool: 50