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