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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # MySQL (default setup). Versions 4.1 and 5.0 are recommended.
  2. #
  3. # Get the fast C bindings:
  4. # gem install mysql
  5. # (on OS X: gem install mysql -- --include=/usr/local/lib)
  6. # And be sure to use new-style password hashing:
  7. # http://dev.mysql.com/doc/refman/5.0/en/old-client.html
  8. production:
  9. adapter: mysql
  10. database: redmine
  11. host: localhost
  12. username: root
  13. password:
  14. encoding: utf8
  15. development:
  16. adapter: mysql
  17. database: redmine_development
  18. host: localhost
  19. username: root
  20. password:
  21. encoding: utf8
  22. test:
  23. adapter: mysql
  24. database: redmine_test
  25. host: localhost
  26. username: root
  27. password:
  28. encoding: utf8
  29. test_pgsql:
  30. adapter: postgresql
  31. database: redmine_test
  32. host: localhost
  33. username: postgres
  34. password: "postgres"
  35. test_sqlite3:
  36. adapter: sqlite3
  37. dbfile: db/test.db
  38. demo:
  39. adapter: sqlite3
  40. dbfile: db/demo.db