Skip to content

Commit 3e8536c

Browse files
alexbevitimgraham
authored andcommitted
Add PyMongo, connection string, & Atlas "deploy a free cluster" links to README
1 parent e8ecf50 commit 3e8536c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Django MongoDB Backend
22

3+
Django MongoDB Backend is a [Django]((https://docs.djangoproject.com/)
4+
database backend that uses [PyMongo](https://www.mongodb.com/docs/languages/python/pymongo-driver/)
5+
to connect to MongoDB.
6+
37
## Documentation
48

59
Documentation written in the style of MongoDB's documentation is available at
@@ -39,7 +43,7 @@ django-admin --version
3943
### Connect to the database
4044

4145
Navigate to your `example/settings.py` file and replace the `DATABASES`
42-
setting like so:
46+
setting using your [connection string](https://www.mongodb.com/docs/manual/reference/connection-string/):
4347

4448
```python
4549
DATABASES = {
@@ -51,6 +55,10 @@ DATABASES = {
5155
}
5256
```
5357

58+
> [!TIP]
59+
> You can quickly and easily [deploy a free cluster](https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster/)
60+
> with MongoDB Atlas.
61+
5462
### Run the server
5563

5664
To verify that you correctly configured your project, run the following command

0 commit comments

Comments
 (0)