[Django]-Django: Difference between BASE_DIR and PROJECT_ROOT?

39👍

They’re almost the same thing. BASE_DIR is where your manage.py lies, and PROJECT_ROOT is BASE_DIR + your_project_name (where settings.py is).

Leave a comment