annotate .svn/pristine/ac/ac3cb3eefdd851a5f9d663d9f434eeb017054b9d.svn-base @ 1327:287f201c2802 redmine-2.2-integration

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