File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ toc_landing_pages = [
12
12
" /security" ,
13
13
" /aggregation-tutorials" ,
14
14
" /data-formats" ,
15
+ " /django-get-started" ,
15
16
]
16
17
17
18
intersphinx = [
Original file line number Diff line number Diff line change @@ -26,5 +26,19 @@ Get Started with {+django-odm+}
26
26
Configure a MongoDB Connection </django-get-started/django-connect-mongodb/>
27
27
Create an Application </django-get-started/django-create-app/>
28
28
Write Data to MongoDB </django-get-started/django-write-data/>
29
- View MongoDB Data </django-get-started/django-view-data/>
30
- Next Steps </django-get-started/django-next-steps/>
29
+ Query MongoDB Data </django-get-started/django-query-data/>
30
+ Next Steps </django-get-started/django-next-steps/>
31
+
32
+ {+django-odm+} is a PyMongo integration that allows you to use the
33
+ MongoDB document model in your Django application. This tutorial shows
34
+ you how to create a Django app, connect to MongoDB cluster hosted on
35
+ MongoDB Atlas, and interact with data in your cluster.
36
+
37
+ .. tip::
38
+
39
+ MongoDB Atlas is a fully managed cloud database service that hosts your MongoDB
40
+ deployments. You can create your own free (no credit card required) MongoDB Atlas
41
+ deployment by following the steps in this guide.
42
+
43
+ Follow this tutorial to connect a sample Django application to a MongoDB Atlas
44
+ deployment.
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ Write Data to MongoDB
76
76
77
77
.. code-block:: python
78
78
79
- exit()
79
+ exit()
80
80
81
81
Then, start your server by running the following command
82
82
from your ``quickstart`` directory:
You can’t perform that action at this time.
0 commit comments