May 2020
Intermediate to advanced
404 pages
10h 52m
English
We'll remove the database connectivity setup configuration since we don't need a database connection in this UI.
Comment out the DATABASES dictionary, as shown:
# Database# https://docs.djangoproject.com/en/2.2/ref/settings/#databases# DATABASES = {# 'default': {# 'ENGINE': 'django.db.backends.sqlite3',# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),# }# }
Save the file. With this done, we'll set up a URL route to point to the apiui routes.
Read now
Unlock full access