Know about default Django Project settings
Know about default Django Project settings
Let’s open the settings.py file and take a look at the configuration of our project.
DEBUG is a boolean that turns on/off the debug mode of the project. If set to True , Django will display detailed error pages when an uncaught exception is thrown by your application. When you move to a production environment, remember you have to set it to False . Never deploy a site into production with DEBUG…
View On WordPress














