319 lines
7.8 KiB
Python
319 lines
7.8 KiB
Python
"""
|
|
Django settings for kursy project.
|
|
|
|
Generated by 'django-admin startproject' using Django 6.0.3.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/6.0/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/6.0/ref/settings/
|
|
"""
|
|
|
|
import os
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
from pathlib import Path
|
|
|
|
import dotenv
|
|
|
|
PROJECT_DIR = Path(__file__).resolve().parent.parent
|
|
BASE_DIR = PROJECT_DIR.parent
|
|
|
|
|
|
dotenv.load_dotenv(BASE_DIR / ".env")
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/6.0/howto/deployment/checklist/
|
|
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
"course_calendar",
|
|
"home",
|
|
"search",
|
|
"purchase",
|
|
"wagtail.contrib.forms",
|
|
"wagtail.contrib.redirects",
|
|
"wagtail.embeds",
|
|
"wagtail.sites",
|
|
"wagtail.users",
|
|
"wagtail.snippets",
|
|
"wagtail.documents",
|
|
"wagtail.images",
|
|
"wagtail.search",
|
|
"wagtail.admin",
|
|
"wagtail",
|
|
"wagtail_color_panel",
|
|
"modelcluster",
|
|
"taggit",
|
|
"django_filters",
|
|
"django.contrib.admin",
|
|
"django.contrib.auth",
|
|
"django.contrib.contenttypes",
|
|
"django.contrib.sessions",
|
|
"django.contrib.messages",
|
|
"django.contrib.staticfiles",
|
|
"allauth_ui",
|
|
"allauth",
|
|
"allauth.account",
|
|
"allauth.socialaccount",
|
|
"allauth.socialaccount.providers.github",
|
|
"oauth2_provider",
|
|
"tailwind",
|
|
"theme",
|
|
"widget_tweaks",
|
|
"slippers",
|
|
]
|
|
|
|
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",
|
|
"wagtail.contrib.redirects.middleware.RedirectMiddleware",
|
|
"allauth.account.middleware.AccountMiddleware",
|
|
"django.middleware.locale.LocaleMiddleware",
|
|
"oauth2_provider.middleware.OAuth2TokenMiddleware",
|
|
]
|
|
|
|
ROOT_URLCONF = "kursy.urls"
|
|
|
|
TEMPLATES = [
|
|
{
|
|
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
|
"DIRS": [
|
|
PROJECT_DIR / "templates",
|
|
],
|
|
"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",
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WAGTAIL_FRONTEND_LOGIN_TEMPLATE = "account/login.html"
|
|
|
|
AUTHENTICATION_BACKENDS = [
|
|
# Needed to login by username in Django admin, regardless of `allauth`
|
|
"django.contrib.auth.backends.ModelBackend",
|
|
# `allauth` specific authentication methods, such as login by email
|
|
"allauth.account.auth_backends.AuthenticationBackend",
|
|
]
|
|
|
|
ACCOUNT_SIGNUP_FIELDS = [
|
|
"first_name*",
|
|
"last_name*",
|
|
"email*",
|
|
"password1*",
|
|
"password2*",
|
|
]
|
|
ACCOUNT_SIGNUP_FORM_CLASS = "kursy.forms.SignUpForm"
|
|
|
|
ACCOUNT_LOGIN_METHODS = ["email", "username"]
|
|
|
|
SOCIALACCOUNT_PROVIDERS = {
|
|
"github": {
|
|
"APP": {
|
|
"client_id": os.getenv("GITHUB_CLIENT_ID"),
|
|
"secret": os.getenv("GITHUB_SECRET"),
|
|
},
|
|
"SCOPE": [
|
|
"read:user",
|
|
],
|
|
},
|
|
}
|
|
|
|
WSGI_APPLICATION = "kursy.wsgi.application"
|
|
|
|
OAUTH2_PROVIDER = {
|
|
"OIDC_ENABLED": True,
|
|
"OIDC_RPID_ENDPOINT": "http://127.0.0.1:8000/oauth2",
|
|
"OIDC_ISS_ENDPOINT": "http://127.0.0.1:8000",
|
|
"PKCE_REQUIRED": False,
|
|
"OAUTH2_VALIDATOR_CLASS": "kursy.oauth_validators.CustomOAuth2Validator",
|
|
"SCOPES": {
|
|
"openid": "OpenID Connect scope",
|
|
"profile": "User profile scope",
|
|
"email": "User email scope",
|
|
"read": "Read scope",
|
|
"write": "Write scope",
|
|
},
|
|
"OIDC_CLAIM_MAPS": {
|
|
"nickname": "preferred_username",
|
|
"email": "email",
|
|
},
|
|
"DEFAULT_SCOPES": ["openid", "profile", "email"],
|
|
}
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/6.0/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
"NAME": BASE_DIR / "db.sqlite3",
|
|
}
|
|
}
|
|
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/6.0/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/6.0/topics/i18n/
|
|
|
|
LANGUAGE_CODE = "pl"
|
|
|
|
TIME_ZONE = "UTC"
|
|
|
|
USE_I18N = True
|
|
|
|
USE_TZ = True
|
|
|
|
LANGUAGES = [
|
|
("pl", "polski"),
|
|
("en", "English"),
|
|
]
|
|
|
|
LOCALE_PATHS = [
|
|
PROJECT_DIR / "locale",
|
|
BASE_DIR / "home" / "locale",
|
|
]
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/6.0/howto/static-files/
|
|
|
|
STATICFILES_FINDERS = [
|
|
"django.contrib.staticfiles.finders.FileSystemFinder",
|
|
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
|
|
]
|
|
|
|
STATICFILES_DIRS = [
|
|
PROJECT_DIR / "static",
|
|
]
|
|
|
|
STATIC_ROOT = BASE_DIR / "static"
|
|
STATIC_URL = "/static/"
|
|
|
|
MEDIA_ROOT = BASE_DIR / "media"
|
|
MEDIA_URL = "/media/"
|
|
|
|
# Default storage settings
|
|
# See https://docs.djangoproject.com/en/6.0/ref/settings/#std-setting-STORAGES
|
|
STORAGES = {
|
|
"default": {
|
|
"BACKEND": "django.core.files.storage.FileSystemStorage",
|
|
},
|
|
"staticfiles": {
|
|
"BACKEND": "django.contrib.staticfiles.storage.StaticFilesStorage",
|
|
},
|
|
}
|
|
|
|
# Django sets a maximum of 1000 fields per form by default, but particularly complex page models
|
|
# can exceed this limit within Wagtail's page editor.
|
|
DATA_UPLOAD_MAX_NUMBER_FIELDS = 10_000
|
|
|
|
|
|
# Logging
|
|
LOGGING = {
|
|
"version": 1,
|
|
"disable_existing_loggers": False,
|
|
"formatters": {
|
|
"verbose": {
|
|
"format": "{asctime} : {levelname} : {filename}:{lineno} : {name} :: {message}",
|
|
"style": "{",
|
|
},
|
|
"simple": {"format": "{asctime} : {levelname} :: {message}", "style": "{"},
|
|
},
|
|
"handlers": {
|
|
"console": {
|
|
"class": "logging.StreamHandler",
|
|
"formatter": "verbose",
|
|
},
|
|
},
|
|
"loggers": {
|
|
"django": {
|
|
"handlers": ["console"],
|
|
"level": "INFO",
|
|
"propagate": True,
|
|
},
|
|
"django.request": {
|
|
"handlers": ["console"],
|
|
"level": "INFO",
|
|
"propagate": False,
|
|
},
|
|
"home": {
|
|
"handlers": ["console"],
|
|
"level": "DEBUG",
|
|
"propagate": True,
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
# Wagtail settings
|
|
|
|
WAGTAIL_SITE_NAME = "kursy"
|
|
|
|
# Search
|
|
# https://docs.wagtail.org/en/stable/topics/search/backends.html
|
|
WAGTAILSEARCH_BACKENDS = {
|
|
"default": {
|
|
"BACKEND": "wagtail.search.backends.database",
|
|
}
|
|
}
|
|
|
|
# Base URL to use when referring to full URLs within the Wagtail admin backend -
|
|
# e.g. in notification emails. Don't include '/admin' or a trailing slash
|
|
WAGTAILADMIN_BASE_URL = "http://example.com"
|
|
|
|
# Allowed file extensions for documents in the document library.
|
|
# This can be omitted to allow all files, but note that this may present a security risk
|
|
# if untrusted users are allowed to upload files -
|
|
# see https://docs.wagtail.org/en/stable/advanced_topics/deploying.html#user-uploaded-files
|
|
WAGTAILDOCS_EXTENSIONS = [
|
|
"csv",
|
|
"docx",
|
|
"key",
|
|
"odt",
|
|
"pdf",
|
|
"pptx",
|
|
"rtf",
|
|
"txt",
|
|
"xlsx",
|
|
"zip",
|
|
]
|
|
|
|
TAILWIND_APP_NAME = "theme"
|
|
|
|
# Gitea API
|
|
GITEA_URL = "http://localhost:3000/api/v1"
|