To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / config / database.yml.example @ 1015:52be96e83080
History | View | Annotate | Download (754 Bytes)
| 1 |
# MySQL (default setup). |
|---|---|
| 2 |
|
| 3 |
production: |
| 4 |
adapter: mysql |
| 5 |
database: redmine |
| 6 |
host: localhost |
| 7 |
username: root |
| 8 |
password: |
| 9 |
encoding: utf8 |
| 10 |
|
| 11 |
development: |
| 12 |
adapter: mysql |
| 13 |
database: redmine_development |
| 14 |
host: localhost |
| 15 |
username: root |
| 16 |
password: |
| 17 |
encoding: utf8 |
| 18 |
|
| 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: mysql |
| 24 |
database: redmine_test |
| 25 |
host: localhost |
| 26 |
username: root |
| 27 |
password: |
| 28 |
encoding: utf8 |
| 29 |
|
| 30 |
test_pgsql: |
| 31 |
adapter: postgresql |
| 32 |
database: redmine_test |
| 33 |
host: localhost |
| 34 |
username: postgres |
| 35 |
password: "postgres" |
| 36 |
|
| 37 |
test_sqlite3: |
| 38 |
adapter: sqlite3 |
| 39 |
database: db/test.sqlite3 |