0PricingLogin
Django Academy · Lesson

Register Apps in INSTALLED_APPS

Make Django aware of your new app.

Django Must Be Told

Creating an app folder is not enough. Django only activates an app once you add it to the INSTALLED_APPS list in settings.

Find the List

Open settings.py and look near the top for INSTALLED_APPS. It is a plain Python list of strings, one per active app.

INSTALLED_APPS = [
    "django.contrib.admin",
]

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