Created
January 27, 2011 16:58
-
-
Save christianrojas/798794 to your computer and use it in GitHub Desktop.
database file
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
defaults: &defaults | |
host: flame.mongohq.com | |
# slaves: | |
# - host: slave1.local | |
# port: 27018 | |
# - host: slave2.local | |
# port: 27019 | |
development: | |
<<: *defaults | |
port: 27056 | |
username: nokuk-database | |
password: kopout29 | |
database: mongoid_development | |
test: | |
<<: *defaults | |
database: mongoid_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'] %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment