Skip to content

Commit

Permalink
fix(settings): remove key compare
Browse files Browse the repository at this point in the history
  • Loading branch information
zhabinka committed Jul 20, 2022
1 parent ebaba67 commit 231e40c
Show file tree
Hide file tree
Showing 2 changed files 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') == 'True'
DEBUG = os.getenv('DEBUG', 'False')
SUPERUSER = os.getenv('SUPERUSER', 'admin')
PASSWORD = os.getenv('PASSWORD', 'admin')

Expand Down
Binary file modified example/db.sqlite3
Binary file not shown.

0 comments on commit 231e40c

Please sign in to comment.