Skip to content

Instantly share code, notes, and snippets.

@abacha
Created February 18, 2013 20:38
Show Gist options
  • Select an option

  • Save abacha/4980489 to your computer and use it in GitHub Desktop.

Select an option

Save abacha/4980489 to your computer and use it in GitHub Desktop.
# Mongoid Configuration
# =====================
#
# Copy this file to config/mongoid.yml and
# modify it accordingly. This file will automatically
# be copied to shared/config on the server when
# `cap deploy:setup` is ran the first time. Be sure
# to place production specific settings there
defaults: &defaults
host: localhost
# slaves:
# - host: slave1.local
# port: 27018
# - host: slave2.local
# port: 27019
development:
<<: *defaults
database: errbit_development
test:
<<: *defaults
database: errbit_test
# set these environment variables on your prod server
production:
<<: *defaults
host: <%= ENV['MONGOID_HOST'] %>
port: <%= ENV['MONGOID_PORT'] %>
username: <%= ENV['MONGOID_USERNAME'] %>
password: <%= ENV['MONGOID_PASSWORD'] %>
database: <%= ENV['MONGOID_DATABASE'] %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment