Skip to content

Commit

Permalink
fix: debug to False
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowtham1729 committed Dec 13, 2023
1 parent 9fb6644 commit a365ea4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions applications/backend/django_server/django_server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
SECRET_KEY = DJANGO_SECRET_KEY

# SECURITY WARNING: don't run with debug turned on in production!
# if ENV != "local":
# DEBUG = False
# else:
DEBUG = True
if ENV != "local":
DEBUG = False
else:
DEBUG = True

# FORCE_SCRIPT_NAME = "/api"
ALLOWED_HOSTS = ["*"]
Expand Down

0 comments on commit a365ea4

Please sign in to comment.