Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 963 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 963 Bytes

Downloading and Installing MongoDB

Go to http://www.mongodb.org, then download and install MongoDB as per the instructions given there. Create a folder named mongodb on your computer and create a subfolder under it named data. Move to the mongodb folder and then start the MongoDB server by typing the following at the prompt: mongod --dbpath=data --bind_ip 127.0.0.1 Then: Open another command window and then type the following at the command prompt to start the mongo REPL shell: mongo

Then ..Clone this repository and then have fun playing around with some commands Like(in Order): db use conFusion db db.help()

Have fun making some operations

db.dishes.insert({ name: "Uthappizza", description: "Test" });

db.dishes.find().pretty();