What for INSTALLED_APPS?

After you created your models, you need to tell django to use it.

To let django know that, you need to add your model name at INSTALLED_APPS in settings.py.

e.g.,

———

INSTALLED_APPS = (

‘django.contrib.auth’,

‘django.contrib.contenttypes’,

‘django.contrib.sessions’,

‘django.contrib.sites’,

‘django.contrib.admin’,

‘myblogsite.myblogapp’,

)

Leave a comment