Skip to content

Commit

Permalink
fix: lugenx#255
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoush-kumar authored Apr 23, 2024
1 parent 28d6651 commit b7147e8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,25 @@ If you prefer the command line way of downloading and installing things, then fe

- The page will reload if you make edits.
- You will also see any lint errors in the console.

### MongoDb Setup Instructions


##### Install MongoDB:
- Visit the MongoDB website and download the appropriate installer for your operating system.

##### Start MongoDB Server:
- After installation, start the MongoDB server. The method for starting the server varies depending on your operating system.

##### Create a Database:
- In your project, decide on the name of your MongoDB database.
- In the MongoDB shell, switch to the desired database using the use <databaseName> command. If the database does not exist, MongoDB will create it when you first write data to it.

##### Connect to MongoDB from Your Application:
- Install a MongoDB driver for your programming language. There are official MongoDB drivers available for most popular programming languages.
- Use the connection string provided by MongoDB to connect to your database. This string typically includes information such as the host, port, and database name.
- Initialize a connection to MongoDB in your application code using the provided driver and the connection string.


## Roadmap

Expand Down

0 comments on commit b7147e8

Please sign in to comment.