2010-06-08 00:45:49 +00:00
|
|
|
defaults: &defaults
|
|
|
|
host: localhost
|
2011-02-23 11:40:56 +00:00
|
|
|
port: 27017
|
2010-06-08 00:45:49 +00:00
|
|
|
# slaves:
|
|
|
|
# - host: slave1.local
|
|
|
|
# port: 27018
|
|
|
|
# - host: slave2.local
|
|
|
|
# port: 27019
|
|
|
|
|
|
|
|
development:
|
|
|
|
<<: *defaults
|
2011-01-03 22:53:25 +00:00
|
|
|
database: locomotive_dev
|
2010-10-29 14:19:41 +00:00
|
|
|
|
2010-06-08 00:45:49 +00:00
|
|
|
test:
|
|
|
|
<<: *defaults
|
2011-01-03 22:53:25 +00:00
|
|
|
database: locomotive_test
|
2010-06-08 00:45:49 +00:00
|
|
|
|
|
|
|
# set these environment variables on your prod server
|
|
|
|
production:
|
|
|
|
<<: *defaults
|
2011-01-03 22:53:25 +00:00
|
|
|
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'] %>
|
|
|
|
|