@@ -1,42 +1,39 | |||
|
1 | # MySQL (default setup). Versions 4.1 and 5.0 are recommended. | |
|
2 | # | |
|
3 | # Get the fast C bindings: | |
|
4 | # gem install mysql | |
|
5 | # (on OS X: gem install mysql -- --include=/usr/local/lib) | |
|
6 | # And be sure to use new-style password hashing: | |
|
7 | # http://dev.mysql.com/doc/refman/5.0/en/old-client.html | |
|
1 | # MySQL (default setup). | |
|
8 | 2 | |
|
9 | 3 | production: |
|
10 | 4 | adapter: mysql |
|
11 | 5 | database: redmine |
|
12 | 6 | host: localhost |
|
13 | 7 | username: root |
|
14 | 8 | password: |
|
15 | 9 | encoding: utf8 |
|
16 | 10 | |
|
17 | 11 | development: |
|
18 | 12 | adapter: mysql |
|
19 | 13 | database: redmine_development |
|
20 | 14 | host: localhost |
|
21 | 15 | username: root |
|
22 | 16 | password: |
|
23 | 17 | encoding: utf8 |
|
24 | 18 | |
|
19 | # Warning: The database defined as "test" will be erased and | |
|
20 | # re-generated from your development database when you run "rake". | |
|
21 | # Do not set this db to the same as development or production. | |
|
25 | 22 | test: |
|
26 | 23 | adapter: mysql |
|
27 | 24 | database: redmine_test |
|
28 | 25 | host: localhost |
|
29 | 26 | username: root |
|
30 | 27 | password: |
|
31 | 28 | encoding: utf8 |
|
32 | 29 | |
|
33 | 30 | test_pgsql: |
|
34 | 31 | adapter: postgresql |
|
35 | 32 | database: redmine_test |
|
36 | 33 | host: localhost |
|
37 | 34 | username: postgres |
|
38 | 35 | password: "postgres" |
|
39 | 36 | |
|
40 | 37 | test_sqlite3: |
|
41 | 38 | adapter: sqlite3 |
|
42 | 39 | database: db/test.db |
General Comments 0
You need to be logged in to leave comments.
Login now