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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Default setup is given for MySQL with ruby1.9.
  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. encoding: utf8
  11. development:
  12. adapter: mysql2
  13. database: redmine_development
  14. host: localhost
  15. username: root
  16. password: ""
  17. encoding: utf8
  18. # Warning: The database defined as "test" will be erased and
  19. # re-generated from your development database when you run "rake".
  20. # Do not set this db to the same as development or production.
  21. test:
  22. adapter: mysql2
  23. database: redmine_test
  24. host: localhost
  25. username: root
  26. password: ""
  27. encoding: utf8
  28. # PostgreSQL configuration example
  29. #production:
  30. # adapter: postgresql
  31. # database: redmine
  32. # host: localhost
  33. # username: postgres
  34. # password: "postgres"
  35. # SQLite3 configuration example
  36. #production:
  37. # adapter: sqlite3
  38. # database: db/redmine.sqlite3
  39. # SQL Server configuration example
  40. #production:
  41. # adapter: sqlserver
  42. # database: redmine
  43. # host: localhost
  44. # username: jenkins
  45. # password: jenkins