Skip to content

Commit

Permalink
Roll back a bit due to a persistent 400 err.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkoov committed Jan 15, 2024
1 parent 74d9041 commit b98dd18
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions backend/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,20 @@
BASE_DIR = Path(__file__).resolve().parent.parent


SECRET_KEY = os.getenv("SECRET_KEY", "defaultVal")
# SECRET_KEY = os.getenv("SECRET_KEY", "defaultVal")

DEBUG = os.getenv("DEBUG", "false").lower() == "true"
# DEBUG = os.getenv("DEBUG", "false").lower() == "true"

ALLOWED_HOSTS = []
# ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS", "localhost").split()


SECRET_KEY = (
"django-insecure-j_89af+30&&4qm*8z9_(^zz8p4-ho8z_m6ylm0s$h!-p@on1_^"
)

DEBUG = True

ALLOWED_HOSTS = []

# Application definition

Expand Down

0 comments on commit b98dd18

Please sign in to comment.