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@0: Chris@0: production: Chris@1295: adapter: mysql2 Chris@0: database: redmine Chris@0: host: localhost Chris@0: username: root Chris@1115: password: "" Chris@0: encoding: utf8 Chris@909: Chris@0: development: Chris@1295: adapter: mysql2 Chris@0: database: redmine_development Chris@0: host: localhost Chris@0: username: root Chris@1115: password: "" Chris@0: encoding: utf8 Chris@0: Chris@0: # Warning: The database defined as "test" will be erased and Chris@0: # re-generated from your development database when you run "rake". Chris@0: # Do not set this db to the same as development or production. Chris@0: test: Chris@1295: adapter: mysql2 Chris@0: database: redmine_test Chris@0: host: localhost Chris@0: username: root Chris@1115: password: "" Chris@0: encoding: utf8 Chris@0: 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@0: 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