updated settings
This commit is contained in:
8
config/django/prod.py
Normal file
8
config/django/prod.py
Normal file
@@ -0,0 +1,8 @@
|
||||
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')
|
||||
CORS_ALLOWED_ORIGINS=env.list('CORS_ALLOWED_ORIGINS')
|
||||
Reference in New Issue
Block a user