Chris@1295: # Default setup is given for MySQL with ruby1.9. If you're running Redmine Chris@1295: # with MySQL and ruby1.8, replace the adapter name with `mysql`. Chris@1295: # Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end. Chris@1295: # Line indentation must be 2 spaces (no tabs). Chris@1295: Chris@1295: production: Chris@1295: adapter: mysql2 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: mysql2 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: mysql2 Chris@1295: database: redmine_test Chris@1295: host: localhost Chris@1295: username: root Chris@1295: password: "" Chris@1295: encoding: utf8 Chris@1295: Chris@1295: # PostgreSQL configuration example Chris@1295: #production: Chris@1295: # adapter: postgresql Chris@1295: # database: redmine Chris@1295: # host: localhost Chris@1295: # username: postgres Chris@1295: # password: "postgres" Chris@1295: Chris@1295: # SQLite3 configuration example Chris@1295: #production: Chris@1295: # adapter: sqlite3 Chris@1295: # database: db/redmine.sqlite3 Chris@1295: Chris@1295: # SQL Server configuration example Chris@1295: #production: Chris@1295: # adapter: sqlserver Chris@1295: # database: redmine Chris@1295: # host: localhost Chris@1295: # username: jenkins Chris@1295: # password: jenkins