redmine/config/database.yml.example
Jean-Philippe Lang 8e4a5996b0 Fixed: 9268 These files should be moved out of revision control
Renamed to *.example:
* config/database.yml
* public/dispatch.cgi
* public/dispatch.fcgi
* public/dispatch.rb

git-svn-id: http://redmine.rubyforge.org/svn/trunk@480 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-04-25 16:21:23 +00:00

52 lines
952 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
host: localhost
username: postgres
password: "postgres"
test_oracle:
adapter: oci
host: 192.168.0.14
username: rails_test
password: "rails"
test_sqlserver:
adapter: sqlserver
host: localhost,1157
database: redmine_test
demo:
adapter: sqlite3
dbfile: db/redmine_demo.db