django-planet
March 2, 2023

Django: How to profile and improve startup time

published by Adam Johnson
in blog Adam Johnson
original entry Django: How to profile and improve startup time

Your Django project’s startup time impacts how smooth it is to work with. Django has to restart your project every time you run a management command and when runserver reloads. This involves importing all your apps, and thus all the modules that they import.

As you add more code …