Skip to content

Commit

Permalink
Remove hardcoded DEBUG.
Browse files Browse the repository at this point in the history
  • Loading branch information
alixedi committed Jun 4, 2021
1 parent 096066b commit 70d261f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
DJANGO_SECRET_KEY = env("DJANGO_SECRET_KEY")

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
DEBUG = env.bool("DEBUG", False)

ALLOWED_HOSTS = "*"

Expand Down

0 comments on commit 70d261f

Please sign in to comment.