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=True)
|
2025-10-13 00:22:26 +00:00
|
|
|
# ALLOWED_HOSTS = env.list('ALLOWED_HOSTS')
|
|
|
|
|
ALLOWED_HOSTS=['localhost',]
|
2025-10-11 21:43:11 -05:00
|
|
|
CORS_ALLOW_ALL_ORIGINS = env.bool('CORS_ALLOW_ALL_ORIGINS')
|
2025-10-13 00:22:26 +00:00
|
|
|
# CORS_ALLOWED_ORIGINS=env.list('CORS_ALLOWED_ORIGINS')
|
|
|
|
|
CORS_ALLOWED_ORIGINS=['http://localhost:5173', 'https://digisnaxx.com']
|