1

Creating an App

We're going to create an app that is going to take care of our authentication:

python manage.py startapp user

We'll call the app user, I recommend this name due to its relevance with the authentication system.

INSTALLED_APPS = [
    ...
    'user' # New line...
]
327
Mohamed
El Firdoussi