Skip to content

Commit

Permalink
Find the 400 err culprit.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkoov committed Jan 15, 2024
1 parent b98dd18 commit fcf2ff2
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions backend/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,15 @@
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"

# 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

INSTALLED_APPS = [
"api.apps.ApiConfig",
"django.contrib.admin",
Expand Down

0 comments on commit fcf2ff2

Please sign in to comment.