Skip to content

Commit

Permalink
fix(settings): remove default value with debug key
Browse files Browse the repository at this point in the history
  • Loading branch information
zhabinka committed Jul 23, 2022
1 parent 231e40c commit 7bd2ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djaif/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
DJANGO_SETTINGS_MODULE = 'djaif.settings'

SECRET_KEY = os.getenv('SECRET_KEY')
DEBUG = os.getenv('DEBUG', 'False')
DEBUG = bool(os.getenv('DEBUG'))
SUPERUSER = os.getenv('SUPERUSER', 'admin')
PASSWORD = os.getenv('PASSWORD', 'admin')

Expand Down

0 comments on commit 7bd2ab6

Please sign in to comment.