Skip to content

Commit

Permalink
Default DEBUG to False
Browse files Browse the repository at this point in the history
  • Loading branch information
brylie committed Jul 15, 2023
1 parent b1dea02 commit 60188de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

SECRET_KEY = os.getenv("DJANGO_SECRET_KEY", get_random_secret_key())

DEBUG = os.getenv("DJANGO_DEBUG", "True") == "True"
DEBUG = os.getenv("DJANGO_DEBUG", "False") == "True"


# Settings related to DigitalOcean Spaces
Expand Down

0 comments on commit 60188de

Please sign in to comment.