Skip to content

Commit

Permalink
Fix for DJANGO_DEBUG env var unset (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
rechner authored Feb 15, 2024
1 parent 7ed7f12 commit 9212608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fm_eventmanager/settings.py.docker
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
SECRET_KEY = os.environ['DJANGO_SECRET_KEY']

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = eval_bool(os.getenv('DJANGO_DEBUG', False))
DEBUG = eval_bool(os.getenv('DJANGO_DEBUG', "False"))

LOGGING = {
'version': 1,
Expand Down

0 comments on commit 9212608

Please sign in to comment.