From 8e4a5996b03e037c62ef560d9e6851eda5a6fa69 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Wed, 25 Apr 2007 16:21:23 +0000 Subject: 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 --- config/database.yml.example | 51 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 config/database.yml.example (limited to 'config/database.yml.example') diff --git a/config/database.yml.example b/config/database.yml.example new file mode 100644 index 000000000..3b1522024 --- /dev/null +++ b/config/database.yml.example @@ -0,0 +1,51 @@ +# 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 + -- cgit v1.2.3