annotate config/database.yml.example @ 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.9. If you're running Redmine
Chris@1295 2 # with MySQL and ruby1.8, replace the adapter name with `mysql`.
Chris@1295 3 # Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end.
Chris@1295 4 # Line indentation must be 2 spaces (no tabs).
Chris@0 5
Chris@0 6 production:
Chris@1295 7 adapter: mysql2
Chris@0 8 database: redmine
Chris@0 9 host: localhost
Chris@0 10 username: root
Chris@1115 11 password: ""
Chris@0 12 encoding: utf8
Chris@909 13
Chris@0 14 development:
Chris@1295 15 adapter: mysql2
Chris@0 16 database: redmine_development
Chris@0 17 host: localhost
Chris@0 18 username: root
Chris@1115 19 password: ""
Chris@0 20 encoding: utf8
Chris@0 21
Chris@0 22 # Warning: The database defined as "test" will be erased and
Chris@0 23 # re-generated from your development database when you run "rake".
Chris@0 24 # Do not set this db to the same as development or production.
Chris@0 25 test:
Chris@1295 26 adapter: mysql2
Chris@0 27 database: redmine_test
Chris@0 28 host: localhost
Chris@0 29 username: root
Chris@1115 30 password: ""
Chris@0 31 encoding: utf8
Chris@0 32
Chris@1295 33 # PostgreSQL configuration example
Chris@1295 34 #production:
Chris@1295 35 # adapter: postgresql
Chris@1295 36 # database: redmine
Chris@1295 37 # host: localhost
Chris@1295 38 # username: postgres
Chris@1295 39 # password: "postgres"
Chris@0 40
Chris@1295 41 # SQLite3 configuration example
Chris@1295 42 #production:
Chris@1295 43 # adapter: sqlite3
Chris@1295 44 # database: db/redmine.sqlite3
Chris@1295 45
Chris@1295 46 # SQL Server configuration example
Chris@1295 47 #production:
Chris@1295 48 # adapter: sqlserver
Chris@1295 49 # database: redmine
Chris@1295 50 # host: localhost
Chris@1295 51 # username: jenkins
Chris@1295 52 # password: jenkins