Merge branch 'dev' into ZDBBCK-001

This commit is contained in:
abutalib-kiwi
2023-07-17 18:50:43 +05:30
5 changed files with 18 additions and 8 deletions

View File

@ -30,11 +30,9 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '-pb+8w#)6qsh+w&tr+q$tholf7=54v%05e^9!lneiqqgtddg6q'
SECRET_KEY = os.getenv('SECRET_KEY')
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
DEBUG = os.getenv('DEBUG')
# allow all host
ALLOWED_HOSTS = ['*']