"""Django settings for cashelp project.Generated by 'django-admin startproject' using Django 3.2.9.For more information on this file, seehttps://docs.djangoproject.com/en/3.2/topics/settings/For the full list of settings and their values, seehttps://docs.djangoproject.com/en/3.2/ref/settings/"""import osfrom pathlib import Path# Build paths inside the project like this: BASE_DIR / 'subdir'.BASE_DIR = Path(__file__).resolve().parent.parent# Quick-start development settings - unsuitable for production# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/# SECURITY WARNING: keep the secret key used in production secret!SECRET_KEY = 'django-insecure-vx1b(943sdj$l%z3ecnc957t@x(t&_3zf8x(=mb6v4&4kv#$4('EMAIL_HOST_USER = os.environ.get('EMAIL_HOST_USER')EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_HOST_PASSWORD')# SECURITY WARNING: don't run with debug turned on in production!DEBUG = TrueALLOWED_HOSTS = ['api.cashelp.org','https://api.cashelp.org/']# CORS_ALLOW_ALL_ORIGINS = TrueCORS_ORIGIN_ALLOW_ALL = TrueAUTH_USER_MODEL = "account.User"AUTHENTICATION_BACKENDS = (    'django.contrib.auth.backends.AllowAllUsersModelBackend',    )# corsCORS_ALLOWED_ORIGINS = [    "https://cashelp.org",]# Access-Control-Allow-Origin: https://cashelp.org# Access-Control-Allow-Credentials: true# Application definitionINSTALLED_APPS = [    'rest_framework.authtoken',    'django.contrib.admin',    'django.contrib.auth',    'django.contrib.contenttypes',    'django.contrib.sessions',    'django.contrib.messages',    'django.contrib.staticfiles',    'corsheaders',    'account',    'rest_framework',    'campaign',    'settings'    ]REST_FRAMEWORK = {    'DEFAULT_AUTHENTICATION_CLASSES': [        'rest_framework.authentication.TokenAuthentication',    ],    'DEFAULT_PERMISSION_CLASSES': (        'rest_framework.permissions.IsAuthenticated',        'rest_framework.permissions.IsAdminUser',   ),   }MIDDLEWARE = [     'corsheaders.middleware.CorsMiddleware',    'django.middleware.security.SecurityMiddleware',    'django.contrib.sessions.middleware.SessionMiddleware',    "corsheaders.middleware.CorsMiddleware",    'django.middleware.common.CommonMiddleware',    #'django.middleware.csrf.CsrfViewMiddleware',    'django.contrib.auth.middleware.AuthenticationMiddleware',    'django.contrib.messages.middleware.MessageMiddleware',    'django.middleware.clickjacking.XFrameOptionsMiddleware',   ]ROOT_URLCONF = 'cashelp.urls'TEMPLATES = [    {        'BACKEND': 'django.template.backends.django.DjangoTemplates',        'DIRS': [],        'APP_DIRS': True,        'OPTIONS': {            'context_processors': [                'django.template.context_processors.debug',                'django.template.context_processors.request',                'django.contrib.auth.context_processors.auth',                'django.contrib.messages.context_processors.messages',            ],        },    },]WSGI_APPLICATION = 'cashelp.wsgi.application'# Database# https://docs.djangoproject.com/en/3.2/ref/settings/#databasesDATABASES = {    'default': {        'ENGINE': 'django.db.backends.mysql',        'NAME': 'sresbdlw_CashelpDB',        'HOST': 'localhost',        'PORT': '3306',        'USER': 'sresbdlw_CashelpDBuser',        'PASSWORD': 'Amer1Ca$help',    }}# Password validation# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validatorsAUTH_PASSWORD_VALIDATORS = [    {        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',    },    {        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',    },    {        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',    },    {        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',    },]# Internationalization# https://docs.djangoproject.com/en/3.2/topics/i18n/LANGUAGE_CODE = 'en-us'TIME_ZONE = 'UTC'USE_I18N = TrueUSE_L10N = TrueUSE_TZ = True# Static files (CSS, JavaScript, Images)# https://docs.djangoproject.com/en/3.2/howto/static-files/STATIC_URL = '/static/'STATIC_ROOT = os.path.join(BASE_DIR, 'static')MEDIA_URL = '/media/'MEDIA_ROOT = os.path.join(BASE_DIR, 'media')# Default primary key field type# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-fieldDEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'EMAIL_HOST = 'sristores.com'EMAIL_PORT = 465EMAIL_USE_SSL = TrueEMAIL_HOST_USER = "electronics@sresht.com"EMAIL_HOST_PASSWORD = "T;#u[SQZC2ob"