This commit is contained in:
2024-08-28 13:55:29 +02:00
parent 1e16059580
commit f927512083

View File

@@ -1,11 +1,13 @@
from .base import *
from .getenv import get_env_variable
import os
from decouple import config
DEBUG = False
ALLOWED_HOSTS = ['18.196.202.28']
SECRET_KEY = get_env_variable('SECRET_KEY')
SECRET_KEY = config('SECRET_KEY')
DATABASES = {
'default': {