updated settings

This commit is contained in:
2025-10-11 21:43:11 -05:00
parent f966084407
commit d3bc2d3b5b
15 changed files with 170 additions and 60 deletions

8
config/django/local.py Normal file
View File

@@ -0,0 +1,8 @@
from .base import *
from config.env import env
SECRET_KEY = env('SECRET_KEY')
DEBUG = env.bool('DEBUG', default=True)
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS')
CORS_ALLOW_ALL_ORIGINS = env.bool('CORS_ALLOW_ALL_ORIGINS')
CORS_ALLOWED_ORIGINS=env.list('CORS_ALLOWED_ORIGINS')