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