# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# Application definition
INSTALLED_APPS = [
# Uncomment the next line to enable the admin:
#'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sites',
'rest_framework', # Inclusion of Djangorestframework for REST API
#'emp_CRUD', # For Django <= 1.9
'emp_CRUD.apps.EmpCrudConfig' # Inclusion of APP for Django > 1.9
]
To enable causes of error during execution
Add our app emp_CRUD and Djangorestframework into our Django project