A Django project contains one or more applications which means we create application inside Project Folder.
python manage.py startapp appname
As we know a Django project can contain multiple application so just creating application inside a project is not enough we also have to install application in our project.
We install application in our project using settings.py file.
settings.py file is available at Project Level which means we can install all the application of project.
This is compulsory otherwise Application won’t be recognized by Django.
.png?h=76129fcee3b265cd164582050de25bdc)
.png?h=4a3d735ee376d3234cc7e8cf1b983340)
.png?h=d92c75e556a7521a393b22fddb71e232)