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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. development:
  15. adapter: mysql
  16. database: redmine_development
  17. host: localhost
  18. username: root
  19. password:
  20. test:
  21. adapter: mysql
  22. database: redmine_test
  23. host: localhost
  24. username: root
  25. password:
  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. dbfile: db/test.db
  35. demo:
  36. adapter: sqlite3
  37. dbfile: db/demo.db