To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / config / database.yml.example @ 1298:4f746d8966dd

History | View | Annotate | Download (1.2 KB)

1 1295:622f24f53b42 Chris
# 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 0:513646585e45 Chris
6
production:
7 1295:622f24f53b42 Chris
  adapter: mysql2
8 0:513646585e45 Chris
  database: redmine
9
  host: localhost
10
  username: root
11 1115:433d4f72a19b Chris
  password: ""
12 0:513646585e45 Chris
  encoding: utf8
13 909:cbb26bc654de Chris
14 0:513646585e45 Chris
development:
15 1295:622f24f53b42 Chris
  adapter: mysql2
16 0:513646585e45 Chris
  database: redmine_development
17
  host: localhost
18
  username: root
19 1115:433d4f72a19b Chris
  password: ""
20 0:513646585e45 Chris
  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 1295:622f24f53b42 Chris
  adapter: mysql2
27 0:513646585e45 Chris
  database: redmine_test
28
  host: localhost
29
  username: root
30 1115:433d4f72a19b Chris
  password: ""
31 0:513646585e45 Chris
  encoding: utf8
32
33 1295:622f24f53b42 Chris
# PostgreSQL configuration example
34
#production:
35
#  adapter: postgresql
36
#  database: redmine
37
#  host: localhost
38
#  username: postgres
39
#  password: "postgres"
40 0:513646585e45 Chris
41 1295:622f24f53b42 Chris
# 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