Local settings

This commit is contained in:
Eden Kirin
2024-04-07 09:51:49 +02:00
parent 126caff1ba
commit 84a34d8049
5 changed files with 38 additions and 1 deletions

View File

@ -146,3 +146,5 @@ STATIC_URL = "static/"
# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
from project.settings_local import *

View File

@ -0,0 +1,2 @@
ALLOWED_HOSTS = ["*"]
DEBUG = True