mirror of
https://github.com/redmine/redmine.git
synced 2026-03-06 04:21:23 +01:00
45 lines
817 B
Plaintext
45 lines
817 B
Plaintext
|
|
# MySQL (default setup). Versions 4.1 and 5.0 are recommended.
|
||
|
|
#
|
||
|
|
# Get the fast C bindings:
|
||
|
|
# gem install mysql
|
||
|
|
# (on OS X: gem install mysql -- --include=/usr/local/lib)
|
||
|
|
# And be sure to use new-style password hashing:
|
||
|
|
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
|
||
|
|
|
||
|
|
production:
|
||
|
|
adapter: mysql
|
||
|
|
database: redmine
|
||
|
|
host: localhost
|
||
|
|
username: root
|
||
|
|
password:
|
||
|
|
|
||
|
|
development:
|
||
|
|
adapter: mysql
|
||
|
|
database: redmine_development
|
||
|
|
host: localhost
|
||
|
|
username: root
|
||
|
|
password:
|
||
|
|
|
||
|
|
test:
|
||
|
|
adapter: mysql
|
||
|
|
database: redmine_test
|
||
|
|
host: localhost
|
||
|
|
username: root
|
||
|
|
password:
|
||
|
|
|
||
|
|
test_pgsql:
|
||
|
|
adapter: postgresql
|
||
|
|
database: redmine_test
|
||
|
|
host: localhost
|
||
|
|
username: postgres
|
||
|
|
password: "postgres"
|
||
|
|
|
||
|
|
test_sqlite3:
|
||
|
|
adapter: sqlite3
|
||
|
|
dbfile: db/test.db
|
||
|
|
|
||
|
|
demo:
|
||
|
|
adapter: sqlite3
|
||
|
|
dbfile: db/demo.db
|
||
|
|
|