Closed MikeTheCanuck closed 6 years ago
Per agreement here: https://github.com/hackoregon/civic-devops/issues/103#issuecomment-390426650
We need to turn off Debug in production, which will require setting it to False in settings.py for each project:
settings.py
This will also likely require us to toggle it to True in the env.sample or equivalent file in each project, and to notify the project owners that they need to inform their developers to toggle this in their .env files.
.env
Fixed in all projects, and confirmed DEBUG=True is included in all env.sample and similar files.
DEBUG=True
Per agreement here: https://github.com/hackoregon/civic-devops/issues/103#issuecomment-390426650
We need to turn off Debug in production, which will require setting it to False in
settings.py
for each project:This will also likely require us to toggle it to True in the env.sample or equivalent file in each project, and to notify the project owners that they need to inform their developers to toggle this in their
.env
files.