I notice that Django lazy-loads the modules that are used in the project. When I first start the server in debugging on my local computer and then load the page from the site, the debugger tells me that Django just imported more than a hundred modules.
I want Django to import all the modules at startup and not wait for the first request. This will make my development more convenient, since I do not have to wait more time for each first request.
Is it possible?
source share