All checks were successful
Auto-Deploy-Shop / deploy (push) Successful in 7s
171 lines
4.8 KiB
Python
171 lines
4.8 KiB
Python
"""
|
||
Django settings for core project.
|
||
|
||
Generated by 'django-admin startproject' using Django 5.2.10.
|
||
|
||
For more information on this file, see
|
||
https://docs.djangoproject.com/en/5.2/topics/settings/
|
||
|
||
For the full list of settings and their values, see
|
||
https://docs.djangoproject.com/en/5.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/5.2/howto/deployment/checklist/
|
||
|
||
# SECURITY WARNING: keep the secret key used in production secret!
|
||
SECRET_KEY = 'django-insecure-pumnq#4_u6%i*4-@8qqmup7xwtbc&lhn_ym4u%!vd437i$k+-o'
|
||
|
||
# SECURITY WARNING: don't run with debug turned on in production!
|
||
DEBUG = True
|
||
|
||
ALLOWED_HOSTS = ['*']
|
||
|
||
|
||
# Application definition
|
||
|
||
INSTALLED_APPS = [
|
||
'django.contrib.admin',
|
||
'django.contrib.auth',
|
||
'django.contrib.contenttypes',
|
||
'django.contrib.sessions',
|
||
'django.contrib.messages',
|
||
'django.contrib.staticfiles',
|
||
'products',
|
||
]
|
||
|
||
MIDDLEWARE = [
|
||
'django.middleware.security.SecurityMiddleware',
|
||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||
'django.middleware.common.CommonMiddleware',
|
||
'django.middleware.csrf.CsrfViewMiddleware',
|
||
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
||
'django.contrib.messages.middleware.MessageMiddleware',
|
||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||
]
|
||
|
||
ROOT_URLCONF = 'core.urls'
|
||
|
||
TEMPLATES = [
|
||
{
|
||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||
'DIRS': [
|
||
os.path.join(BASE_DIR, 'templates'),
|
||
],
|
||
'APP_DIRS': True,
|
||
'OPTIONS': {
|
||
'context_processors': [
|
||
'django.template.context_processors.request',
|
||
'django.contrib.auth.context_processors.auth',
|
||
'django.contrib.messages.context_processors.messages',
|
||
],
|
||
},
|
||
},
|
||
]
|
||
|
||
WSGI_APPLICATION = 'core.wsgi.application'
|
||
|
||
|
||
# Database
|
||
# https://docs.djangoproject.com/en/5.2/ref/settings/#databases
|
||
|
||
# Database settings
|
||
# Читаем тип окружения из переменной окружения
|
||
ENV_TYPE = os.getenv('ENV_TYPE', 'local') # по умолчанию 'local'
|
||
|
||
if ENV_TYPE == 'server':
|
||
# Настройки для Docker на сервере
|
||
DATABASES = {
|
||
'default': {
|
||
'ENGINE': 'django.db.backends.postgresql',
|
||
'NAME': os.getenv('DB_NAME', 'my_shop_db'),
|
||
'USER': os.getenv('DB_USER', 'shop_user'),
|
||
'PASSWORD': os.getenv('DB_PASS', 'shop_password'),
|
||
'HOST': os.getenv('DB_HOST', 'db'), # Имя сервиса в docker-compose
|
||
'PORT': '5432',
|
||
}
|
||
}
|
||
elif ENV_TYPE == 'dev':
|
||
# Настройки для локальной разработки с внешней БД
|
||
DATABASES = {
|
||
'default': {
|
||
'ENGINE': 'django.db.backends.postgresql',
|
||
'NAME': 'dev_shop_db',
|
||
'USER': 'dev_user',
|
||
'PASSWORD': 'dev_password',
|
||
'HOST': '192.168.1.90', # Ваш локальный сервер БД
|
||
'PORT': '5432',
|
||
}
|
||
}
|
||
else:
|
||
# Если переменная не задана или 'local' — используем SQLite
|
||
DATABASES = {
|
||
'default': {
|
||
'ENGINE': 'django.db.backends.sqlite3',
|
||
'NAME': BASE_DIR / 'db.sqlite3',
|
||
}
|
||
}
|
||
|
||
|
||
# Password validation
|
||
# https://docs.djangoproject.com/en/5.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/5.2/topics/i18n/
|
||
|
||
# LANGUAGE_CODE = 'en-us'
|
||
LANGUAGE_CODE = 'ru-ru'
|
||
|
||
# TIME_ZONE = 'UTC'
|
||
TIME_ZONE = 'Europe/Moscow'
|
||
|
||
USE_I18N = True
|
||
|
||
USE_TZ = True
|
||
|
||
|
||
# Static files (CSS, JavaScript, Images)
|
||
# https://docs.djangoproject.com/en/5.2/howto/static-files/
|
||
|
||
STATIC_URL = 'static/'
|
||
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
|
||
|
||
MEDIA_URL = 'media/'
|
||
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
|
||
|
||
|
||
# Default primary key field type
|
||
# https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field
|
||
|
||
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
||
|
||
# добавил от жемени из за нжинкса
|
||
|
||
CSRF_TRUSTED_ORIGINS = [
|
||
"http://192.168.1.57:8080",
|
||
"https://shop.tertelius.space",
|
||
"https://ha3001.tertelius.space",# Сразу добавь на будущее
|
||
]
|