diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-25 16:21:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-25 16:21:23 +0000 |
commit | 8e4a5996b03e037c62ef560d9e6851eda5a6fa69 (patch) | |
tree | 974c2cad8ab8069a79b71bdb8df9511455d227f6 /config/database.yml.example | |
parent | 52547466f0f1ce8b41bf1539546aaa28457077a1 (diff) | |
download | redmine-8e4a5996b03e037c62ef560d9e6851eda5a6fa69.tar.gz redmine-8e4a5996b03e037c62ef560d9e6851eda5a6fa69.zip |
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
Diffstat (limited to 'config/database.yml.example')
-rw-r--r-- | config/database.yml.example | 51 |
1 files changed, 51 insertions, 0 deletions
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
+ |