0PricingLogin
Django Academy · Lesson

Touring settings.py

The key settings every project depends on.

One File, Whole Project

The settings.py file is the control panel for your entire project. Nearly every Django behavior is configured from this one place. 🎛️

It Is Just Python

Settings are plain Python variables, so you can compute them with code. That flexibility is powerful, but it means typos break startup loudly.

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