database.yml.example
52 lines
| 1.2 KiB
| text/plain
|
TextLexer
/ config / database.yml.example
|
r10974 | # Default setup is given for MySQL with ruby1.9. If you're running Redmine | ||
# with MySQL and ruby1.8, replace the adapter name with `mysql`. | ||||
|
r11143 | # Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end. | ||
# Line indentation must be 2 spaces (no tabs). | ||||
|
r5 | |||
production: | ||||
|
r10974 | adapter: mysql2 | ||
|
r5 | database: redmine | ||
host: localhost | ||||
username: root | ||||
|
r10517 | password: "" | ||
|
r1569 | encoding: utf8 | ||
|
r6437 | |||
|
r2 | development: | ||
|
r10974 | adapter: mysql2 | ||
|
r761 | database: redmine_development | ||
|
r2 | host: localhost | ||
username: root | ||||
|
r10517 | password: "" | ||
|
r1569 | encoding: utf8 | ||
|
r761 | |||
|
r3450 | # Warning: The database defined as "test" will be erased and | ||
# re-generated from your development database when you run "rake". | ||||
# Do not set this db to the same as development or production. | ||||
|
r2 | test: | ||
|
r10974 | adapter: mysql2 | ||
|
r761 | database: redmine_test | ||
|
r2 | host: localhost | ||
username: root | ||||
|
r10517 | password: "" | ||
|
r1569 | encoding: utf8 | ||
|
r5 | |||
|
r11143 | # PostgreSQL configuration example | ||
#production: | ||||
# adapter: postgresql | ||||
# database: redmine | ||||
# host: localhost | ||||
# username: postgres | ||||
# password: "postgres" | ||||
# SQLite3 configuration example | ||||
#production: | ||||
# adapter: sqlite3 | ||||
# database: db/redmine.sqlite3 | ||||
|
r5 | |||
|
r11143 | # SQL Server configuration example | ||
#production: | ||||
# adapter: sqlserver | ||||
# database: redmine | ||||
# host: localhost | ||||
# username: jenkins | ||||
# password: jenkins | ||||