Skip to content

Commit

Permalink
Set Debug to False
Browse files Browse the repository at this point in the history
  • Loading branch information
yosephdev committed Aug 11, 2024
1 parent ecd25a0 commit ccd390f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BookDine/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
SECRET_KEY = os.environ.get('SECRET_KEY')

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

ALLOWED_HOSTS = ['localhost', '127.0.0.1', '.herokuapp.com']

Expand Down

0 comments on commit ccd390f

Please sign in to comment.