You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

database.yml.example 933B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Default setup is given for MySQL with ruby1.8. If you're running Redmine
  2. # with MySQL and ruby1.9, replace the adapter name with `mysql2`.
  3. # Examples for PostgreSQL and SQLite3 can be found at the end.
  4. production:
  5. adapter: mysql
  6. database: redmine
  7. host: localhost
  8. username: root
  9. password:
  10. encoding: utf8
  11. development:
  12. adapter: mysql
  13. database: redmine_development
  14. host: localhost
  15. username: root
  16. password:
  17. encoding: utf8
  18. # Warning: The database defined as "test" will be erased and
  19. # re-generated from your development database when you run "rake".
  20. # Do not set this db to the same as development or production.
  21. test:
  22. adapter: mysql
  23. database: redmine_test
  24. host: localhost
  25. username: root
  26. password:
  27. encoding: utf8
  28. test_pgsql:
  29. adapter: postgresql
  30. database: redmine_test
  31. host: localhost
  32. username: postgres
  33. password: "postgres"
  34. test_sqlite3:
  35. adapter: sqlite3
  36. database: db/test.sqlite3