+ Наведен порядок в файлах проекта + Наведен порядок в документации + Настроены скрипты установки, развертки и так далее, расширен MakeFile
199 lines
5.4 KiB
Python
199 lines
5.4 KiB
Python
"""
|
||
Django settings for backend project.
|
||
|
||
Generated by 'django-admin startproject' using Django 5.2.
|
||
|
||
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/
|
||
"""
|
||
|
||
from pathlib import Path
|
||
from dotenv import load_dotenv
|
||
import os
|
||
# Load environment variables from .env file
|
||
load_dotenv()
|
||
|
||
# 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 = os.getenv('DJANGO_SECRET_KEY')
|
||
|
||
# SECURITY WARNING: don't run with debug turned on in production!
|
||
DEBUG = os.getenv('DJANGO_DEBUG', 'False') == 'True'
|
||
|
||
ALLOWED_HOSTS = ['*'] # Разрешаем доступ с любых хостов для разработки
|
||
|
||
# Отключаем APPEND_SLASH для корректной работы API с Next.js proxy
|
||
APPEND_SLASH = False
|
||
|
||
CORS_ALLOWED_ORIGINS = [
|
||
"http://127.0.0.1:3000",
|
||
"http://localhost:3000",
|
||
"http://127.0.0.1:3001",
|
||
"http://localhost:3001",
|
||
"http://192.168.219.108:3000",
|
||
"http://192.168.219.108:3001",
|
||
"http://192.168.219.108:8000",
|
||
"http://192.168.219.108:8001",
|
||
]
|
||
|
||
CORS_ALLOW_ALL_ORIGINS = True # Для разработки
|
||
CORS_ALLOW_CREDENTIALS = True
|
||
CORS_ALLOW_HEADERS = [
|
||
'accept',
|
||
'accept-encoding',
|
||
'authorization',
|
||
'content-type',
|
||
'dnt',
|
||
'origin',
|
||
'user-agent',
|
||
'x-csrftoken',
|
||
'x-requested-with',
|
||
]
|
||
|
||
# Application definition
|
||
|
||
INSTALLED_APPS = [
|
||
"corsheaders",
|
||
'drf_spectacular',
|
||
"drf_spectacular_sidecar",
|
||
'django.contrib.admin',
|
||
'django.contrib.auth',
|
||
'django.contrib.contenttypes',
|
||
'django.contrib.sessions',
|
||
'django.contrib.messages',
|
||
'django.contrib.staticfiles',
|
||
'users',
|
||
'links',
|
||
'customization',
|
||
'api',
|
||
'rest_framework',
|
||
'rest_framework_simplejwt',
|
||
'django_extensions',
|
||
]
|
||
|
||
MIDDLEWARE = [
|
||
"corsheaders.middleware.CorsMiddleware",
|
||
'django.middleware.security.SecurityMiddleware',
|
||
'whitenoise.middleware.WhiteNoiseMiddleware',
|
||
'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 = 'backend.urls'
|
||
|
||
TEMPLATES = [
|
||
{
|
||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||
'DIRS': [],
|
||
'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 = 'backend.wsgi.application'
|
||
|
||
REST_FRAMEWORK = {
|
||
'DEFAULT_AUTHENTICATION_CLASSES': [
|
||
'rest_framework_simplejwt.authentication.JWTAuthentication',
|
||
],
|
||
'DEFAULT_PERMISSION_CLASSES': [
|
||
'rest_framework.permissions.IsAuthenticatedOrReadOnly',
|
||
],
|
||
'DEFAULT_SCHEMA_CLASS': 'drf_spectacular.openapi.AutoSchema',
|
||
'DEFAULT_RENDERER_CLASSES': [
|
||
'rest_framework.renderers.JSONRenderer',
|
||
],
|
||
}
|
||
|
||
from datetime import timedelta
|
||
SIMPLE_JWT = {
|
||
'ACCESS_TOKEN_LIFETIME': timedelta(minutes=60),
|
||
'REFRESH_TOKEN_LIFETIME': timedelta(days=1),
|
||
'AUTH_HEADER_TYPES': ('Bearer',),
|
||
}
|
||
|
||
# Database
|
||
# https://docs.djangoproject.com/en/5.2/ref/settings/#databases
|
||
|
||
DATABASES = {
|
||
'default': {
|
||
'ENGINE': os.getenv('DATABASE_ENGINE', 'django.db.backends.postgresql'),
|
||
'NAME': os.getenv('DATABASE_NAME'),
|
||
'USER': os.getenv('DATABASE_USER'),
|
||
'PASSWORD': os.getenv('DATABASE_PASSWORD'),
|
||
'HOST': os.getenv('DATABASE_HOST'),
|
||
'PORT': os.getenv('DATABASE_PORT'),
|
||
}
|
||
}
|
||
|
||
|
||
# Password validation
|
||
# https://docs.djangoproject.com/en/5.2/ref/settings/#auth-password-validators
|
||
|
||
AUTH_USER_MODEL = 'users.User'
|
||
|
||
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 = 'ru-ru'
|
||
|
||
TIME_ZONE = 'UTC'
|
||
|
||
USE_I18N = True
|
||
|
||
USE_TZ = True
|
||
|
||
|
||
# Static files (CSS, JavaScript, Images)
|
||
# https://docs.djangoproject.com/en/5.2/howto/static-files/
|
||
|
||
STATIC_ROOT = BASE_DIR / 'staticfiles'
|
||
|
||
# URL, по которому статика будет доступна
|
||
STATIC_URL = '/static/'
|
||
|
||
# WhiteNoise настройки
|
||
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
|
||
|
||
# Default primary key field type
|
||
# https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field
|
||
|
||
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
||
|
||
MEDIA_URL = '/storage/'
|
||
MEDIA_ROOT = BASE_DIR / 'storage' |