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 1.3KB

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