This commit is contained in:
2024-08-28 14:11:40 +02:00
parent f927512083
commit 7d1850ed34
3 changed files with 6 additions and 12 deletions

View File

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