annotate config/database.yml.example @ 1480:75fd8eace091 issue_556

Close obsolete branch issue_556
author Chris Cannam
date Sat, 13 Jul 2013 15:26:30 +0100
parents 433d4f72a19b
children 622f24f53b42
rev   line source
Chris@1115 1 # Default setup is given for MySQL with ruby1.8. If you're running Redmine
Chris@1115 2 # with MySQL and ruby1.9, replace the adapter name with `mysql2`.
Chris@1115 3 # Examples for PostgreSQL and SQLite3 can be found at the end.
Chris@0 4
Chris@0 5 production:
Chris@0 6 adapter: mysql
Chris@0 7 database: redmine
Chris@0 8 host: localhost
Chris@0 9 username: root
Chris@1115 10 password: ""
Chris@0 11 encoding: utf8
Chris@909 12
Chris@0 13 development:
Chris@0 14 adapter: mysql
Chris@0 15 database: redmine_development
Chris@0 16 host: localhost
Chris@0 17 username: root
Chris@1115 18 password: ""
Chris@0 19 encoding: utf8
Chris@0 20
Chris@0 21 # Warning: The database defined as "test" will be erased and
Chris@0 22 # re-generated from your development database when you run "rake".
Chris@0 23 # Do not set this db to the same as development or production.
Chris@0 24 test:
Chris@0 25 adapter: mysql
Chris@0 26 database: redmine_test
Chris@0 27 host: localhost
Chris@0 28 username: root
Chris@1115 29 password: ""
Chris@0 30 encoding: utf8
Chris@0 31
Chris@0 32 test_pgsql:
Chris@0 33 adapter: postgresql
Chris@0 34 database: redmine_test
Chris@0 35 host: localhost
Chris@0 36 username: postgres
Chris@0 37 password: "postgres"
Chris@0 38
Chris@0 39 test_sqlite3:
Chris@0 40 adapter: sqlite3
Chris@210 41 database: db/test.sqlite3