##// END OF EJS Templates
fixed #9401 New Wiki, cannot create new page....
Jean-Philippe Lang -
r349:a559c0cfc2e9
parent child
Show More
@@ -1,51 +1,51
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 15
16 16 development:
17 17 adapter: mysql
18 database: redmine_development
18 database: redmine_development2
19 19 host: localhost
20 20 username: root
21 21 password:
22 22
23 23 test:
24 24 adapter: mysql
25 25 database: redmine_test
26 26 host: localhost
27 27 username: root
28 28 password:
29 29
30 30 test_pgsql:
31 31 adapter: postgresql
32 32 database: redmine
33 33 host: localhost
34 34 username: postgres
35 35 password: "postgres"
36 36
37 37 test_oracle:
38 38 adapter: oci
39 39 host: 192.168.0.14
40 40 username: rails_test
41 41 password: "rails"
42 42
43 43 test_sqlserver:
44 44 adapter: sqlserver
45 45 host: localhost,1157
46 46 database: redmine_test
47 47
48 48 demo:
49 49 adapter: sqlite3
50 50 dbfile: db/redmine_demo.db
51 51
General Comments 0
You need to be logged in to leave comments. Login now