annotate .svn/pristine/ac/ac3cb3eefdd851a5f9d663d9f434eeb017054b9d.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

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