From c18a8a8c6fe359e913d683047a4ddb53a2499e1c Mon Sep 17 00:00:00 2001 From: Harry Bomrah Date: Mon, 24 Jun 2013 19:20:52 +0800 Subject: [PATCH] mongoid yml fix --- config/mongoid.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 config/mongoid.yml diff --git a/config/mongoid.yml b/config/mongoid.yml new file mode 100644 index 00000000..2fa55a36 --- /dev/null +++ b/config/mongoid.yml @@ -0,0 +1,24 @@ +defaults: &defaults + host: localhost + # slaves: + # - host: slave1.local + port: 27017 + # - host: slave2.local + # port: 27019 + +development: + <<: *defaults + database: test_site +test: + <<: *defaults + database: test_site + +# set these environment variables on your prod server +production: + # host: <%= ENV['MONGOID_HOST'] %> + # port: <%= ENV['MONGOID_PORT'] %> + # username: <%= ENV['MONGOID_USERNAME'] %> + # password: <%= ENV['MONGOID_PASSWORD'] %> + # database: <%= ENV['MONGOID_DATABASE'] %> + <<: *defaults + database: demo_site_production