May 2020
Intermediate to advanced
404 pages
10h 52m
English
In the list of INSTALLED_APPS, add the apiui app, as shown:
# Application definitionINSTALLED_APPS = [ 'apiui', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles',]
The Django framework only includes apps during runtime that are listed in the INSTALLED_APPS directive, as in the preceding code. We will also need to define the database connectivity for the project, which is shown in the next section.
Read now
Unlock full access