Skip to content

Instantly share code, notes, and snippets.

@christianrojas
Created January 27, 2011 16:58
Show Gist options
  • Save christianrojas/798794 to your computer and use it in GitHub Desktop.
Save christianrojas/798794 to your computer and use it in GitHub Desktop.
database file
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