Skip to content

Instantly share code, notes, and snippets.

@lewis-kori
Created November 11, 2019 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lewis-kori/43f2555ceaea386a5602c1d42074e230 to your computer and use it in GitHub Desktop.
Save lewis-kori/43f2555ceaea386a5602c1d42074e230 to your computer and use it in GitHub Desktop.
INSTALLED_APPS = [
#our first django app
'accounts',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
#third party package for user registration and authentication endpoints
'djoser',
#rest API implementation library for django
'rest_framework',
#JWT authentication backend library
'rest_framework_simplejwt',
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment