Skip to content

Commit e4312c6

Browse files
committed
Doc: Create new tutorial
1 parent 435fa06 commit e4312c6

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Applications in Django
2+
3+
The thinking behind Django is that we have a website project, which we have already created in [the previous tutorial](01_getting_started.md), and have multiple apps each doing its own thing. For example, we can have a blog section of the website, which is an app on its own, then we can have a store section which is an app as well. So, a single project can contain multiple apps.
4+
5+
If you would like to skip to a particular section in the entire Django tutorial, you can do so by clicking on any of the links below:
6+
7+
- [Django Overview](00_overview.md)
8+
- [Getting Started With Django](01_getting_started.md)
9+
- [Applications and routes](02_applications_and_routes.md) (this article)
10+
11+
12+
### Table of Contents
13+
14+
In this tutorial, we are going to add a blog app within our project.
15+
16+
- [Create an app](#create-an-app)
17+
18+
19+
20+
21+
## Create An App
22+
23+
Ensure you are currently at the top-level directory of our project, where `manage.py` is located. From the terminal, run the following command:
24+
25+
```python
26+
(venv)$ python3 manage.py startapp blog
27+
```
28+

0 commit comments

Comments
 (0)