engine/config/mongoid.yml

35 lines
747 B
YAML
Raw Normal View History

defaults: &defaults
host: localhost
2011-02-23 11:40:56 +00:00
port: 27017
# slaves:
# - host: slave1.local
# port: 27018
# - host: slave2.local
# port: 27019
development:
<<: *defaults
database: locomotive_dev
2010-10-29 14:19:41 +00:00
test:
<<: *defaults
2011-01-03 22:53:25 +00:00
database: locomotive_test
# set these environment variables on your prod server
production:
2011-04-06 23:34:36 +00:00
# <<: *defaults
# database: locomotive_prod
2011-01-03 13:44:38 +00:00
# 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'] %>
2011-03-21 10:35:54 +00:00
# bushido (mongohq_url will also work)
uri: <%= ENV['MONGODB_URL'] %>