startapp and the App Folder Layout
What each generated file in an app is for.
Apps Are the Building Blocks
A Django project is made of small, focused pieces called apps. Each app handles one feature, like a blog or a shop. 🧱
Create One with startapp
You make a new app with the startapp command. Django generates a ready-to-edit folder so you never start from a blank page.
python manage.py startapp blogAll lessons in this course
- startapp and the App Folder Layout
- Register Apps in INSTALLED_APPS
- Touring settings.py
- manage.py: Your Command Center