0PricingLogin
Django Academy · Lesson

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 blog

All lessons in this course

  1. startapp and the App Folder Layout
  2. Register Apps in INSTALLED_APPS
  3. Touring settings.py
  4. manage.py: Your Command Center
← Back to Django Academy