Mercurial > hg > soundsoftware-site
annotate config/database.yml.example @ 1172:60d42b9850d2 bug_367
Close obsolete branch bug_367
author | Chris Cannam |
---|---|
date | Fri, 03 Feb 2012 15:20:50 +0000 |
parents | 0579821a129a |
children | cbb26bc654de |
rev | line source |
---|---|
Chris@0 | 1 # MySQL (default setup). |
Chris@0 | 2 |
Chris@0 | 3 production: |
Chris@0 | 4 adapter: mysql |
Chris@0 | 5 database: redmine |
Chris@0 | 6 host: localhost |
Chris@0 | 7 username: root |
Chris@0 | 8 password: |
Chris@0 | 9 encoding: utf8 |
Chris@0 | 10 |
Chris@0 | 11 development: |
Chris@0 | 12 adapter: mysql |
Chris@0 | 13 database: redmine_development |
Chris@0 | 14 host: localhost |
Chris@0 | 15 username: root |
Chris@0 | 16 password: |
Chris@0 | 17 encoding: utf8 |
Chris@0 | 18 |
Chris@0 | 19 # Warning: The database defined as "test" will be erased and |
Chris@0 | 20 # re-generated from your development database when you run "rake". |
Chris@0 | 21 # Do not set this db to the same as development or production. |
Chris@0 | 22 test: |
Chris@0 | 23 adapter: mysql |
Chris@0 | 24 database: redmine_test |
Chris@0 | 25 host: localhost |
Chris@0 | 26 username: root |
Chris@0 | 27 password: |
Chris@0 | 28 encoding: utf8 |
Chris@0 | 29 |
Chris@0 | 30 test_pgsql: |
Chris@0 | 31 adapter: postgresql |
Chris@0 | 32 database: redmine_test |
Chris@0 | 33 host: localhost |
Chris@0 | 34 username: postgres |
Chris@0 | 35 password: "postgres" |
Chris@0 | 36 |
Chris@0 | 37 test_sqlite3: |
Chris@0 | 38 adapter: sqlite3 |
Chris@210 | 39 database: db/test.sqlite3 |