Skip to content

Commit fec49b0

Browse files
committed
Refactor Django tutorial documentation
The Django tutorial in the docs has been simplified and made more general. The specific 'music' module has been removed from the instructions, replacing it with a guideline to check whether an app is included in the 'INSTALLED_APPS' setting. In addition, changes to the title format and other minor text changes have been implemented to improve clarity and readability.
1 parent c6cab5c commit fec49b0

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

docs/index.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 🌐 Building Your First API with Django and Django Rest Framework
1+
~~# 🌐 Building Your First API with Django and Django Rest Framework
22

33
## Summary
44

@@ -74,12 +74,8 @@ This will clone the repository
7474

7575
Now we are going to create the Django we are going to use in this tutorial.
7676

77-
```shell
78-
cd first_api
79-
./manage.py startapp music
80-
```
8177

82-
This will create the app structure for us. Something similar to this below:
78+
The current project structure is something similar to this below:
8379
```shell
8480
❯ tree .
8581
.
@@ -101,7 +97,7 @@ This will create the app structure for us. Something similar to this below:
10197
└── views.py
10298
```
10399

104-
Don't forget to add the app music to your INSTALLED_APPS in your `settings.py`
100+
Don't forget to check the app music to your INSTALLED_APPS in your `settings.py`
105101
```python
106102
# first_api/settings.py
107103
...

0 commit comments

Comments
 (0)