From fec49b0f3ee493cae7cb85bd0ab882f829244c1e Mon Sep 17 00:00:00 2001
From: FeliPython <felipejpa15@gmail.com>
Date: Wed, 15 May 2024 14:45:30 -0400
Subject: [PATCH] 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.
---
 docs/index.md | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/docs/index.md b/docs/index.md
index 2d013d2..46c2bec 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,4 +1,4 @@
-# 🌐 Building Your First API with Django and Django Rest Framework
+~~# 🌐 Building Your First API with Django and Django Rest Framework
 
 ## Summary
 
@@ -74,12 +74,8 @@ This will clone the repository
 
 Now we are going to create the Django we are going to use in this tutorial.
 
-```shell
-cd first_api
-./manage.py startapp music
-```
 
-This will create the app structure for us. Something similar to this below:
+The current project structure is something similar to this below:
 ```shell
 ❯ tree .
 .
@@ -101,7 +97,7 @@ This will create the app structure for us. Something similar to this below:
     └── views.py
 ```
 
-Don't forget to add the app music to your INSTALLED_APPS in your `settings.py`
+Don't forget to check the app music to your INSTALLED_APPS in your `settings.py`
 ```python
 # first_api/settings.py
 ...