Revert django debug setting back to False

Commit 4123da81 changed the innocuous DEBUG setting from True to False
in the django local_settings for horizon. Unfortunately, the DEBUG flag
is used by django in order to determine (among other things) whether or
not to serve static files.

This change reverts the DEBUG setting from False to True and adds
breadcrumb comments for future travelers in oder to prevent this in the
future.

Closes-Bug: 1957696

Change-Id: I0bb57ce3f6b3ba124844267f2d9ae6ca35922d8c
This commit is contained in:
Billy Olsen 2022-01-11 20:10:05 -07:00
parent 814a6ac6e3
commit f96a0f8123
1 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,11 @@
# Tweaks to make this run nicely in a snap.
# TODO: turn this off once everything is working nicely.
DEBUG = False
# TODO(wolsen): This should be turned off, but doing so will cause django
# to no longer serve static files by default. When turning this from True
# to False, django will need to be told to serve the static files or the
# nginx will need to be configured to serve these static files in order
# for things like css, js, and images to be retrievable.
DEBUG = True
# Set our webroot.
WEBROOT = '/'