2006-06-28 22:11:03 +04:00
|
|
|
# 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
|
2006-07-09 20:30:01 +04:00
|
|
|
|
|
|
|
production:
|
|
|
|
adapter: mysql
|
|
|
|
database: redmine
|
|
|
|
host: localhost
|
|
|
|
username: root
|
|
|
|
password:
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
development:
|
|
|
|
adapter: mysql
|
2007-09-28 02:30:57 +04:00
|
|
|
database: redmine_development
|
2006-06-28 22:11:03 +04:00
|
|
|
host: localhost
|
|
|
|
username: root
|
|
|
|
password:
|
2007-09-28 02:30:57 +04:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
test:
|
|
|
|
adapter: mysql
|
2007-09-28 02:30:57 +04:00
|
|
|
database: redmine_test
|
2006-06-28 22:11:03 +04:00
|
|
|
host: localhost
|
|
|
|
username: root
|
|
|
|
password:
|
2006-07-09 20:30:01 +04:00
|
|
|
|
|
|
|
test_pgsql:
|
|
|
|
adapter: postgresql
|
2008-01-20 17:24:19 +03:00
|
|
|
database: redmine_test
|
2006-07-09 20:30:01 +04:00
|
|
|
host: localhost
|
|
|
|
username: postgres
|
|
|
|
password: "postgres"
|
|
|
|
|
2008-01-20 17:24:19 +03:00
|
|
|
test_sqlite3:
|
|
|
|
adapter: sqlite3
|
|
|
|
dbfile: db/test.db
|
2007-09-28 02:30:57 +04:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
demo:
|
2007-09-28 02:30:57 +04:00
|
|
|
adapter: sqlite3
|
2008-01-20 17:24:19 +03:00
|
|
|
dbfile: db/demo.db
|
2006-06-28 22:11:03 +04:00
|
|
|
|