database.yml.example
41 lines
| 933 B
| text/plain
|
TextLexer
/ config / database.yml.example
|
r9275 | # Default setup is given for MySQL with ruby1.8. If you're running Redmine | ||
# with MySQL and ruby1.9, replace the adapter name with `mysql2`. | ||||
# Examples for PostgreSQL and SQLite3 can be found at the end. | ||||
|
r5 | |||
production: | ||||
adapter: mysql | ||||
database: redmine | ||||
host: localhost | ||||
username: root | ||||
password: | ||||
|
r1569 | encoding: utf8 | ||
|
r6437 | |||
|
r2 | development: | ||
adapter: mysql | ||||
|
r761 | database: redmine_development | ||
|
r2 | host: localhost | ||
username: root | ||||
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: | ||
adapter: mysql | ||||
|
r761 | database: redmine_test | ||
|
r2 | host: localhost | ||
username: root | ||||
password: | ||||
|
r1569 | encoding: utf8 | ||
|
r5 | |||
test_pgsql: | ||||
adapter: postgresql | ||||
|
r1070 | database: redmine_test | ||
|
r5 | host: localhost | ||
username: postgres | ||||
password: "postgres" | ||||
|
r1070 | test_sqlite3: | ||
adapter: sqlite3 | ||||
|
r4633 | database: db/test.sqlite3 | ||