In this video you will be creating a Django app. You’ve already created the Django project which is the main entry point to your website.
This is the current structure of your web app so far. What you are looking at is considered the Django project portion of your web application.
You can see the utilities are there for configuration and routing, but there are no web pages yet, and no interactivity.
This is where the Django app comes in. A request will arrive at the front door of our Django project. Urls.py will determine the destination view for the particular request and direct it to the appropriate Django app.
Kevin M on May 12, 2019
I’ve got some issues when trying to create the app. It raised the error (django.core.exceptions.ImproperlyConfigured: Could not find the GDAL library (tried “gdal203”, “gdal202”, “gdal201”, “gdal20”, “gdal111”). Is GDAL installed? If it is, try setting GDAL_LIBR ARY_PATH in your settings. )
but when I set the GDAL_LIBRARY_PATH, it still raised the error. I’m working on Windows