Skip to content

Commit eb01a81

Browse files
debug default set to 1
1 parent 149de67 commit eb01a81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
SECRET_KEY = os.environ.get("SECRET_KEY", default=get_random_secret_key())
2828

2929
# SECURITY WARNING: don't run with debug turned on in production!
30-
DEBUG = int(os.environ.get("DEBUG", default=0))
30+
DEBUG = int(os.environ.get("DEBUG", default=1))
3131

3232
ALLOWED_HOSTS = os.environ.get("RENDER_EXTERNAL_HOSTNAME", default="127.0.0.1 [::1]").split()
3333
CSRF_TRUSTED_ORIGINS = [f"https://{host}" for host in ALLOWED_HOSTS]

0 commit comments

Comments
 (0)