annotate config/database.yml.example @ 8:0c83d98252d9 yuya

* Add custom repo prefix and proper auth realm, remove auth cache (seems like an unwise feature), pass DB handle around, various other bits of tidying
author Chris Cannam
date Thu, 12 Aug 2010 15:31:37 +0100
parents 513646585e45
children 0579821a129a
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@0 39 database: db/test.db