Skip to content

Commit

Permalink
Swap debug logic
Browse files Browse the repository at this point in the history
  • Loading branch information
tnaccarato committed Aug 11, 2024
1 parent e43c22b commit 0ceab79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vis_phewas/vis_phewas/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
SECRET_KEY = os.getenv('DJANGO_SECRET_KEY')

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

# Fetch the DJANGO_ALLOWED_HOSTS environment variable
DJANGO_ALLOWED_HOSTS = os.getenv('DJANGO_ALLOWED_HOSTS', '')
Expand Down

0 comments on commit 0ceab79

Please sign in to comment.