Skip to content

Commit

Permalink
Merge pull request #52 from SheCodesAus/bug-fix/eoi
Browse files Browse the repository at this point in the history
disable debug
  • Loading branch information
suanTech committed Apr 4, 2024
2 parents 1e5e7e8 + 0ba8137 commit e4e7eeb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions exception_al/exception_al/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
)

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

STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

Expand Down

0 comments on commit e4e7eeb

Please sign in to comment.