Skip to content

Commit e520bf4

Browse files
committed
landing page
1 parent 8585730 commit e520bf4

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

snooty.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ toc_landing_pages = [
1212
"/security",
1313
"/aggregation-tutorials",
1414
"/data-formats",
15+
"/django-get-started",
1516
]
1617

1718
intersphinx = [

source/django-get-started.txt

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,19 @@ Get Started with {+django-odm+}
2626
Configure a MongoDB Connection </django-get-started/django-connect-mongodb/>
2727
Create an Application </django-get-started/django-create-app/>
2828
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.

source/django-get-started/django-write-data.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Write Data to MongoDB
7676

7777
.. code-block:: python
7878

79-
exit()
79+
exit()
8080

8181
Then, start your server by running the following command
8282
from your ``quickstart`` directory:

0 commit comments

Comments
 (0)