Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: #255 #263

Open
wants to merge 1 commit into
base: revert-237-new_feature
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,24 @@ 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

- _List any features planned_
Expand Down