You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The given above format only works if you are using MongoDB Atlas in the Cloud,
17
+
To find more detailed instructions on setting up MongoDB Atlas use this [Link](https://www.mongodb.com/docs/atlas/getting-started/)
18
+
16
19
If you're hosting it locally , add the following to the `.env` file
17
20
18
21
```sh
19
22
MONGO_DB_URI=mongodb://localhost:27017
20
23
```
21
24
25
+
To find more instruction on hosting a MongoDB instance locally use this [Link](https://www.mongodb.com/docs/manual/tutorial/install-mongodb-community-with-docker/)
26
+
22
27
considering the docker instance is running on `PORT 27017`
23
28
24
29
## Database Schema
@@ -41,7 +46,7 @@ The `feedback` collection uses JSON Schema validation with the following structu
41
46
}
42
47
```
43
48
44
-
Right now the Schema is a single one, but later on the sources field would be encapsulated in another schema for better decoupling
49
+
Right now the Schema is a single one, but later on the sources field would be encapsulated in another schema for better decoupling
0 commit comments