Created
October 16, 2011 19:31
-
-
Save pixxelboy/1291312 to your computer and use it in GitHub Desktop.
Mongoid conf
This file contains hidden or 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
development: | |
host: localhost | |
database: APP_development | |
test: | |
host: localhost | |
database: APP_test | |
# set these environment variables on your prod server | |
production: | |
host: <%= ENV['MONGOID_HOST'] %> | |
port: <%= ENV['MONGOID_PORT'] %> | |
username: <%= ENV['MONGOID_USERNAME'] %> | |
password: <%= ENV['MONGOID_PASSWORD'] %> | |
database: <%= ENV['MONGOID_DATABASE'] %> | |
# slaves: | |
# - host: slave1.local | |
# port: 27018 | |
# - host: slave2.local | |
# port: 27019 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment