Chris@1295: # Default setup is given for MySQL with ruby1.8. If you're running Redmine Chris@1295: # with MySQL and ruby1.9, replace the adapter name with `mysql2`. Chris@1295: # Examples for PostgreSQL and SQLite3 can be found at the end. Chris@1295: Chris@1295: production: Chris@1295: adapter: mysql Chris@1295: database: redmine Chris@1295: host: localhost Chris@1295: username: root Chris@1295: password: "" Chris@1295: encoding: utf8 Chris@1295: Chris@1295: development: Chris@1295: adapter: mysql Chris@1295: database: redmine_development Chris@1295: host: localhost Chris@1295: username: root Chris@1295: password: "" Chris@1295: encoding: utf8 Chris@1295: Chris@1295: # Warning: The database defined as "test" will be erased and Chris@1295: # re-generated from your development database when you run "rake". Chris@1295: # Do not set this db to the same as development or production. Chris@1295: test: Chris@1295: adapter: mysql Chris@1295: database: redmine_test Chris@1295: host: localhost Chris@1295: username: root Chris@1295: password: "" Chris@1295: encoding: utf8 Chris@1295: Chris@1295: test_pgsql: Chris@1295: adapter: postgresql Chris@1295: database: redmine_test Chris@1295: host: localhost Chris@1295: username: postgres Chris@1295: password: "postgres" Chris@1295: Chris@1295: test_sqlite3: Chris@1295: adapter: sqlite3 Chris@1295: database: db/test.sqlite3