engine/config/mongoid.yml
2011-01-03 14:44:38 +01:00

33 lines
680 B
YAML

defaults: &defaults
host: localhost
# slaves:
# - host: slave1.local
# port: 27018
# - host: slave2.local
# port: 27019
development:
<<: *defaults
database: locomotive_staging_dev
test:
<<: *defaults
database: locomotive_staging_test
# set these environment variables on your prod server
production:
<<: *defaults
database: locomotive_staging_prod
# other settings for production
# host: <%= ENV['MONGOID_HOST'] %>
# port: <%= ENV['MONGOID_PORT'] %>
# username: <%= ENV['MONGOID_USERNAME'] %>
# password: <%= ENV['MONGOID_PASSWORD'] %>
# database: <%= ENV['MONGOID_DATABASE'] %>
# heroku
# uri: <%= ENV['MONGOHQ_URL'] %>