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 750B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # MySQL (default setup).
  2. production:
  3. adapter: mysql
  4. database: redmine
  5. host: localhost
  6. username: root
  7. password:
  8. encoding: utf8
  9. development:
  10. adapter: mysql
  11. database: redmine_development
  12. host: localhost
  13. username: root
  14. password:
  15. encoding: utf8
  16. # Warning: The database defined as "test" will be erased and
  17. # re-generated from your development database when you run "rake".
  18. # Do not set this db to the same as development or production.
  19. test:
  20. adapter: mysql
  21. database: redmine_test
  22. host: localhost
  23. username: root
  24. password:
  25. encoding: utf8
  26. test_pgsql:
  27. adapter: postgresql
  28. database: redmine_test
  29. host: localhost
  30. username: postgres
  31. password: "postgres"
  32. test_sqlite3:
  33. adapter: sqlite3
  34. database: db/test.db