Django
Startproject vs Startapp
- introduction
- Django installation
- Coming soon
the main concept is what is difference between Startapp vs startproject,so we will in table format see it,
Startproject | Startapp |
---|---|
It generates the core elements of web apps | It is part of the StartProject, it generates an application in the project |
It's provides a setting.py file auditiona | it's not provides |
It provides a wsgi.py file to connect your application to the server | it's part of applications |
this is not provides database storage | It provides a database storage, It provides models.py file for the creation of databaes |
It handles more than one app at a time | it's part of apps |
it's direct the web app project | It helps in creating web applications. |
Image is display the Structure-: