Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Default setup is given for MySQL with ruby1.9. If you're running Redmine
  2. # with MySQL and ruby1.8, replace the adapter name with `mysql`.
  3. # Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end.
  4. # Line indentation must be 2 spaces (no tabs).
  5. production:
  6. adapter: mysql2
  7. database: redmine
  8. host: localhost
  9. username: root
  10. password: ""
  11. encoding: utf8
  12. development:
  13. adapter: mysql2
  14. database: redmine_development
  15. host: localhost
  16. username: root
  17. password: ""
  18. encoding: utf8
  19. # Warning: The database defined as "test" will be erased and
  20. # re-generated from your development database when you run "rake".
  21. # Do not set this db to the same as development or production.
  22. test:
  23. adapter: mysql2
  24. database: redmine_test
  25. host: localhost
  26. username: root
  27. password: ""
  28. encoding: utf8
  29. # PostgreSQL configuration example
  30. #production:
  31. # adapter: postgresql
  32. # database: redmine
  33. # host: localhost
  34. # username: postgres
  35. # password: "postgres"
  36. # SQLite3 configuration example
  37. #production:
  38. # adapter: sqlite3
  39. # database: db/redmine.sqlite3
  40. # SQL Server configuration example
  41. #production:
  42. # adapter: sqlserver
  43. # database: redmine
  44. # host: localhost
  45. # username: jenkins
  46. # password: jenkins