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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Django MongoDB Backend
2
2
3
-
The Django MongoDB Backend is a Django database backend that uses [PyMongo](https://www.mongodb.com/docs/languages/python/pymongo-driver/current/) to connect to MongoDB.
3
+
Django MongoDB Backend is a [Django database backend](https://docs.djangoproject.com/en/5.2/ref/databases/#third-party-notes) that uses [PyMongo](https://www.mongodb.com/docs/languages/python/pymongo-driver/current/) to connect to MongoDB.
4
4
5
5
## Documentation
6
6
@@ -40,6 +40,9 @@ django-admin --version
40
40
41
41
### Connect to the database
42
42
43
+
If you don't already have a MongoDB cluster, see the [getting started with Atlas](https://www.mongodb.com/docs/atlas/getting-started/) documentation
44
+
to quickly and easily [deploy a free cluster](https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster/).
45
+
43
46
Navigate to your `example/settings.py` file and replace the `DATABASES`
44
47
setting like so:
45
48
@@ -53,9 +56,6 @@ DATABASES = {
53
56
}
54
57
```
55
58
56
-
If you don't already have a MongoDB cluster, see the [getting started with Atlas](https://www.mongodb.com/docs/atlas/getting-started/) documentation
57
-
to quickly and easily [deploy a free cluster](https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster/).
58
-
59
59
### Run the server
60
60
61
61
To verify that you correctly configured your project, run the following command
0 commit comments