""" Django settings for project project. Generated by 'django-admin startproject' using Django 4.1.6. For more information on this file, see https://docs.djangoproject.com/en/4.1/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/4.1/ref/settings/ """ import os from pathlib import Path from django.utils.translation import gettext_lazy as _ # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent PROJECT_DIR = Path(__file__).resolve().parent # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = "django-insecure-8qh(ha_fw#3mc#y+rtd^se+e$-+n5%1o*d3%3p0d379q1zxypu" # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ # "djangocms_admin_style", "django.contrib.admin", "django.contrib.auth", "django.contrib.sites", "django.contrib.contenttypes", "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", "django.contrib.humanize", "django.contrib.gis", # Froide apps "froide_govplan.apps.FroideGovPlanConfig", "froide.georegion", "froide.publicbody", "froide.follow", "froide.organization", "froide.team", "froide.helper", # Third party apps "easy_thumbnails", "filer", "sekizai", "cms", "djangocms_alias", "menus", "treebeard", "taggit", "tinymce", ] MIDDLEWARE = [ "django.middleware.security.SecurityMiddleware", "django.middleware.locale.LocaleMiddleware", # needs to be before CommonMiddleware "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", "cms.middleware.user.CurrentUserMiddleware", "cms.middleware.page.CurrentPageMiddleware", "cms.middleware.toolbar.ToolbarMiddleware", "cms.middleware.language.LanguageCookieMiddleware", ] ROOT_URLCONF = "project.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", "sekizai.context_processors.sekizai", "cms.context_processors.cms_settings", "froide.helper.context_processors.site_settings", "froide_govplan.context_processors.plans_context", ], }, }, ] WSGI_APPLICATION = "project.wsgi.application" # Database # https://docs.djangoproject.com/en/4.1/ref/settings/#databases DATABASES = { "default": { "ENGINE": "django.contrib.gis.db.backends.postgis", # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. # "NAME": "fragdenstaat_de", "NAME": "govplan", "USER": "govplan", "PASSWORD": "govplan", "HOST": "localhost", # Set to empty string for localhost. Not used with sqlite3. "PORT": "5432", # Set to empty string for default. Not used with sqlite3. } } GDAL_LIBRARY_PATH = os.environ.get("GDAL_LIBRARY_PATH") GEOS_LIBRARY_PATH = os.environ.get("GEOS_LIBRARY_PATH") # Password validation # https://docs.djangoproject.com/en/4.1/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/4.1/topics/i18n/ LANGUAGE_CODE = "de" LANGUAGES = [("de", _("German"))] TIME_ZONE = "UTC" USE_I18N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/4.1/howto/static-files/ STATIC_URL = "static/" STATICFILES_DIRS = [ BASE_DIR / "static", ] # Default primary key field type # https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" # AUTH_USER_MODEL = "account.User" TAGGIT_CASE_INSENSITIVE = True TAGGIT_STRIP_UNICODE_WHEN_SLUGIFYING = True LOGIN_URL = "admin:login" X_FRAME_OPTIONS = "SAMEORIGIN" # Django CMS CMS_TEMPLATES = [ ("froide_govplan/base.html", "Govplan base template"), ] # Froide SITE_ID = 1 SITE_NAME = "GovPlan" SITE_URL = "http://localhost:8000" SITE_EMAIL = "info@example.com" SITE_LOGO = "" FROIDE_CONFIG = { "bounce_enabled": False, "bounce_format": "bounce+{token}@example.com", "bounce_max_age": 60 * 60 * 24 * 14, # 14 days "unsubscribe_enabled": False, "unsubscribe_format": "unsub+{token}@example.com", } ELASTICSEARCH_INDEX_PREFIX = "govplan" CMS_CONFIRM_VERSION4 = True # Govplan settings GOVPLAN_NAME = "GovPlan" GOVPLAN_ENABLE_FOIREQUEST = False