comparison .svn/pristine/b3/b314740f953a31b89fda7f481071584ad0011ffb.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
comparison
equal deleted inserted replaced
1294:3e4c3460b6ca 1295:622f24f53b42
1 # Default setup is given for MySQL with ruby1.9. If you're running Redmine
2 # with MySQL and ruby1.8, replace the adapter name with `mysql`.
3 # Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end.
4 # Line indentation must be 2 spaces (no tabs).
5
6 production:
7 adapter: mysql2
8 database: redmine
9 host: localhost
10 username: root
11 password: ""
12 encoding: utf8
13
14 development:
15 adapter: mysql2
16 database: redmine_development
17 host: localhost
18 username: root
19 password: ""
20 encoding: utf8
21
22 # Warning: The database defined as "test" will be erased and
23 # re-generated from your development database when you run "rake".
24 # Do not set this db to the same as development or production.
25 test:
26 adapter: mysql2
27 database: redmine_test
28 host: localhost
29 username: root
30 password: ""
31 encoding: utf8
32
33 # PostgreSQL configuration example
34 #production:
35 # adapter: postgresql
36 # database: redmine
37 # host: localhost
38 # username: postgres
39 # password: "postgres"
40
41 # SQLite3 configuration example
42 #production:
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