217 lines
No EOL
5.6 KiB
Python
217 lines
No EOL
5.6 KiB
Python
"""
|
|
Django settings for iamkonstantin_web project.
|
|
|
|
Generated by 'django-admin startproject' using Django 5.0.2.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/5.0/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/5.0/ref/settings/
|
|
"""
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
import os
|
|
|
|
PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
BASE_DIR = os.path.dirname(PROJECT_DIR)
|
|
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/
|
|
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
"portfolio",
|
|
"base",
|
|
"blog",
|
|
"home",
|
|
"search",
|
|
"wagtailcodeblock",
|
|
"wagtailseo",
|
|
"wagtail.contrib.settings",
|
|
"wagtail.contrib.forms",
|
|
"wagtail.contrib.redirects",
|
|
"wagtail.embeds",
|
|
"wagtail.sites",
|
|
"wagtail.users",
|
|
"wagtail.snippets",
|
|
"wagtail.documents",
|
|
"wagtail.images",
|
|
"wagtail.search",
|
|
"wagtail.admin",
|
|
"wagtail",
|
|
"modelcluster",
|
|
"taggit",
|
|
"django.contrib.admin",
|
|
"django.contrib.auth",
|
|
"django.contrib.contenttypes",
|
|
"django.contrib.sessions",
|
|
"django.contrib.messages",
|
|
"django.contrib.staticfiles",
|
|
"django.contrib.sitemaps",
|
|
"tailwind",
|
|
"theme",
|
|
"django_browser_reload"
|
|
]
|
|
|
|
MIDDLEWARE = [
|
|
"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",
|
|
"django.middleware.security.SecurityMiddleware",
|
|
"wagtail.contrib.redirects.middleware.RedirectMiddleware",
|
|
"blog.middleware.BlogRedirectMiddleware",
|
|
"django_browser_reload.middleware.BrowserReloadMiddleware"
|
|
]
|
|
|
|
ROOT_URLCONF = "iamkonstantin_web.urls"
|
|
|
|
TEMPLATES = [
|
|
{
|
|
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
|
"DIRS": [
|
|
os.path.join(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.contrib.settings.context_processors.settings"
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = "iamkonstantin_web.wsgi.application"
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
|
|
}
|
|
}
|
|
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/5.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/5.0/topics/i18n/
|
|
|
|
LANGUAGE_CODE = "en-us"
|
|
|
|
TIME_ZONE = "UTC"
|
|
|
|
USE_I18N = True
|
|
|
|
USE_TZ = True
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/5.0/howto/static-files/
|
|
|
|
STATICFILES_FINDERS = [
|
|
"django.contrib.staticfiles.finders.FileSystemFinder",
|
|
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
|
|
]
|
|
|
|
STATICFILES_DIRS = [
|
|
os.path.join(PROJECT_DIR, "static"),
|
|
]
|
|
|
|
STATIC_ROOT = os.path.join(BASE_DIR, "static")
|
|
STATIC_URL = "/static/"
|
|
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|
|
MEDIA_URL = "/media/"
|
|
|
|
# Default storage settings, with the staticfiles storage updated.
|
|
# See https://docs.djangoproject.com/en/5.0/ref/settings/#std-setting-STORAGES
|
|
STORAGES = {
|
|
"default": {
|
|
"BACKEND": "django.core.files.storage.FileSystemStorage",
|
|
},
|
|
# ManifestStaticFilesStorage is recommended in production, to prevent
|
|
# outdated JavaScript / CSS assets being served from cache
|
|
# (e.g. after a Wagtail upgrade).
|
|
# See https://docs.djangoproject.com/en/5.0/ref/contrib/staticfiles/#manifeststaticfilesstorage
|
|
"staticfiles": {
|
|
"BACKEND": "django.contrib.staticfiles.storage.ManifestStaticFilesStorage",
|
|
},
|
|
}
|
|
|
|
|
|
# Wagtail settings
|
|
|
|
WAGTAIL_SITE_NAME = "iamkonstantin_web"
|
|
|
|
# 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 = "https://iamkonstantin.eu"
|
|
|
|
WAGTAIL_CODE_BLOCK_LANGUAGES = (
|
|
('bash', 'Bash/Shell'),
|
|
('css', 'CSS'),
|
|
('dart', 'Dart'),
|
|
('docker', 'Docker'),
|
|
('elixir', 'Elixir'),
|
|
('go', 'Go'),
|
|
('html', 'HTML'),
|
|
('javascript', 'Javascript'),
|
|
('json', 'JSON'),
|
|
('kotlin', 'Kotlin'),
|
|
('python', 'Python'),
|
|
('rust', 'Rust'),
|
|
('swift', 'Swift'),
|
|
('toml', 'TOML'),
|
|
('yaml', 'YAML'),
|
|
)
|
|
|
|
WAGTAIL_CODE_BLOCK_THEME = 'twilight'
|
|
|
|
WAGTAIL_CODE_BLOCK_LINE_NUMBERS = False
|
|
|
|
TAILWIND_APP_NAME = 'theme'
|
|
|
|
INTERNAL_IPS = [
|
|
"127.0.0.1",
|
|
]
|
|
|
|
INDEXNOW_KEY = '6207353506374e99ae67c41edb8df2e0' |