Skip to content

Commit

Permalink
fix: make sure locally we show django debug
Browse files Browse the repository at this point in the history
  • Loading branch information
FinalAngel committed Oct 30, 2024
1 parent 1a91eba commit ea49128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
SECRET_KEY = os.environ.get('SECRET_KEY', 'changeme')

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

ALLOWED_HOSTS = ["*"]
CSRF_TRUSTED_ORIGINS=["https://*.aldryn.io"]
Expand Down

0 comments on commit ea49128

Please sign in to comment.