Created
May 21, 2011 16:36
-
-
Save yarmand/984665 to your computer and use it in GitHub Desktop.
mongoid for heroku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults: &defaults | |
host: localhost | |
# slaves: | |
# - host: slave1.local | |
# port: 27018 | |
# - host: slave2.local | |
# port: 27019 | |
development: | |
<<: *defaults | |
database: clatria_development | |
test: | |
<<: *defaults | |
database: clatria_test | |
# set these environment variables on your prod server | |
production: | |
uri: <%= ENV['MONGOHQ_URL'] %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment