Skip to content

Commit 80c983a

Browse files
committed
Update docs to include music app in INSTALLED_APPS
The current documentation was updated to inform users that they should include the "music" application in the INSTALLED_APPS list within Django's `settings.py` file. As this is a necessary step while setting up the application, it's crucial to have this information included in our documentation.
1 parent e4c9dcf commit 80c983a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docs/index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,22 @@ This will create the app structure for us. Something similar to this below:
102102
└── views.py
103103
```
104104

105+
Don't forget to add the app music to your INSTALLED_APPS in your `settings.py`
106+
```python
107+
# settings.py
108+
...
109+
INSTALLED_APPS = [
110+
"django.contrib.admin",
111+
"django.contrib.auth",
112+
"django.contrib.contenttypes",
113+
"django.contrib.sessions",
114+
"django.contrib.messages",
115+
"django.contrib.staticfiles",
116+
"rest_framework",
117+
"music",
118+
]
119+
...
120+
```
105121
## Django Models
106122

107123
Now the next step is create the models we are going to use in our API to represent the domain models.

0 commit comments

Comments
 (0)