2025-10-11 21:43:11 -05:00
|
|
|
from .base import *
|
|
|
|
|
from config.env import env
|
|
|
|
|
|
|
|
|
|
SECRET_KEY = env('SECRET_KEY')
|
|
|
|
|
DEBUG = env.bool('DEBUG', default=False)
|
|
|
|
|
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS')
|
|
|
|
|
CORS_ALLOW_ALL_ORIGINS = env.bool('CORS_ALLOW_ALL_ORIGINS')
|
2025-11-30 15:34:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
CORS_ALLOWED_ORIGINS = [
|
|
|
|
|
'http://localhost:5173',
|
|
|
|
|
'https://digisnaxx.com',
|
|
|
|
|
'https://www.digisnaxx.com',
|
|
|
|
|
'https://www.canincarlos.com',
|
|
|
|
|
'https://canincarlos.com',
|
|
|
|
|
'https://dreamfreely.org',
|
|
|
|
|
'https://www.dreamfreely.org'
|
|
|
|
|
]
|