Skip to content

Instantly share code, notes, and snippets.

@achiurizo
Created October 31, 2010 21:31
Show Gist options
  • Save achiurizo/657177 to your computer and use it in GitHub Desktop.
Save achiurizo/657177 to your computer and use it in GitHub Desktop.
Mongoid.database = case Padrino.env
when :development
Mongo::Connection.from_uri("mongodb://user:[email protected]:27048/development_db").db('development_db')
when :production
Mongo::Connection.from_uri("mongodb://user:[email protected]:27048/production_db").db('production_db')
when :test
Mongo::Connection.new('localhost',Mongo::Connection::DEFAULT_PORT).db('test_db')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment