ojuso-map/ojusomap/settings.py

338 lines
10 KiB
Python
Raw Normal View History

"""
Django settings for ojusomap project.
Generated by 'django-admin startproject' using Django 1.11.1.
For more information on this file, see
https://docs.djangoproject.com/en/1.11/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.11/ref/settings/
"""
import os
import raven
2017-05-20 23:54:52 +00:00
from django.utils.translation import ugettext_lazy as _
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
2017-05-20 23:54:52 +00:00
SECRET_KEY = os.getenv(
2019-08-19 21:37:32 +00:00
"SECRET_KEY", "r3vwfrawmnwh3kzp4(p#sg0!y%!jg80k06(j@p!y(q^h@5y*lw"
)
# SECURITY WARNING: don't run with debug turned on in production!
2019-08-19 21:37:32 +00:00
DEBUG = bool(int(os.getenv("DEBUG", False)))
if DEBUG:
2019-08-19 21:37:32 +00:00
ALLOWED_HOSTS = ["*"]
else:
2019-08-19 21:37:32 +00:00
ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS", "localhost").split()
# Application definition
INSTALLED_APPS = [
2019-08-19 21:37:32 +00:00
"apps.contact",
"apps.files",
"apps.map",
"apps.profiles",
"avatar",
"bootstrap3",
"cas_server",
"compressor",
"crispy_forms",
"dal",
"dal_select2",
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.flatpages",
"django.contrib.gis",
"django.contrib.humanize",
"django.contrib.messages",
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.staticfiles",
"django_extensions",
"envelope",
"leaflet",
"raven.contrib.django.raven_compat",
"registration",
"rest_framework",
"rest_framework_gis",
"storages",
"whitenoise.runserver_nostatic",
"anymail",
]
MIDDLEWARE = [
2019-08-19 21:37:32 +00:00
"django.middleware.security.SecurityMiddleware",
"whitenoise.middleware.WhiteNoiseMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.locale.LocaleMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
"django.contrib.flatpages.middleware.FlatpageFallbackMiddleware",
]
2019-08-19 21:37:32 +00:00
ROOT_URLCONF = "ojusomap.urls"
SITE_ID = 1
2019-08-19 21:37:32 +00:00
SITE_URL = "https://map.ojuso.org"
TEMPLATES = [
{
2019-08-19 21:37:32 +00:00
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [os.path.join(BASE_DIR, "ojusomap/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",
]
},
2019-08-19 21:37:32 +00:00
}
]
2019-08-19 21:37:32 +00:00
WSGI_APPLICATION = "ojusomap.wsgi.application"
# E-Mail
# https://docs.djangoproject.com/en/1.11/topics/email/
2019-08-19 21:37:32 +00:00
ADMINS = [("Autonomic", "autonomic-coop@posteo.net")]
DEFAULT_FROM_EMAIL = os.getenv("DEFAULT_FROM_EMAIL", "webmaster@localhost")
EMAIL_HOST = os.getenv("EMAIL_HOST", "localhost")
EMAIL_HOST_PASSWORD = os.getenv("EMAIL_HOST_PASSWORD")
EMAIL_HOST_USER = os.getenv("EMAIL_HOST_USER")
EMAIL_PORT = os.getenv("EMAIL_PORT", 25)
EMAIL_USE_TLS = bool(int(os.getenv("EMAIL_USE_TLS", False)))
EMAIL_SUBJECT_PREFIX = "Ojuso Platform"
2019-08-19 21:37:32 +00:00
SERVER_EMAIL = os.getenv("SERVER_EMAIL", "root@localhost")
2017-05-19 00:23:40 +00:00
2019-08-19 21:37:32 +00:00
DATABASE_EMAIL = os.getenv("DATABASE_EMAIL", "autonomic-coop@posteo.net")
EMAIL_BACKEND = "anymail.backends.mailgun.EmailBackend"
ANYMAIL = {
2019-08-19 21:37:32 +00:00
"MAILGUN_API_KEY": os.getenv(
"MAILGUN_API_KEY", "key-e82f77942478d2892b4faf51fc88ce45"
),
"MAILGUN_SENDER_DOMAIN": os.getenv(
"MAILGUN_SENDER_DOMAIN", "sandbox35a5ee2a4dfc4f3aaf76d4672e4497ae.mailgun.org"
),
}
# Database
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
2017-05-19 00:23:40 +00:00
DATABASES = {
2019-08-19 21:37:32 +00:00
"default": {
"ENGINE": "django.contrib.gis.db.backends.postgis",
"HOST": os.getenv("DATABASE_HOST", "localhost"),
"PORT": os.getenv("DATABASE_PORT", "5432"),
"NAME": os.getenv("DATABASE_NAME", "postgres"),
"USER": os.getenv("DATABASE_USER", "postgres"),
"PASSWORD": os.getenv("DATABASE_PASSWORD", "postgres"),
}
}
# Password validation
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
2019-08-19 21:37:32 +00:00
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator"
},
2019-08-19 21:37:32 +00:00
{"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator"},
{"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator"},
{"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator"},
]
# Registration (Redux)
ACCOUNT_ACTIVATION_DAYS = 3
# Internationalization
# https://docs.djangoproject.com/en/1.11/topics/i18n/
2019-08-19 21:37:32 +00:00
LANGUAGE_CODE = "en-gb"
2019-08-19 21:37:32 +00:00
TIME_ZONE = "UTC"
USE_I18N = True
USE_L10N = True
USE_TZ = True
2017-05-20 23:54:52 +00:00
LANGUAGES = [
2019-08-19 21:37:32 +00:00
("en-gb", _("English (British)")),
("fr", _("French")),
("es", _("Spanish")),
2017-05-20 23:54:52 +00:00
]
2019-08-19 21:37:32 +00:00
LOCALE_PATHS = [os.path.join(BASE_DIR, "support/locale")]
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/
2019-08-19 21:37:32 +00:00
DEFAULT_FILE_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
AWS_S3_ENDPOINT_URL = "https://ojuso-media.nyc3.digitaloceanspaces.com"
if DEBUG:
AWS_STORAGE_BUCKET_NAME = "debug-test"
else:
AWS_STORAGE_BUCKET_NAME = "ojuso-media"
AWS_LOCATION = ""
AWS_S3_REGION_NAME = "nyc3"
AWS_S3_CUSTOM_DOMAIN = "ojuso-media.nyc3.digitaloceanspaces.com/ojuso-media"
AWS_ACCESS_KEY_ID = "RUZTFVKPCNJIWCVUVJFW"
AWS_SECRET_ACCESS_KEY = "pTZAnmtvGzFBdI/jwtwRoFW5eK7eJ8FLFxr1/Jb+Yq4"
2018-11-20 17:59:53 +00:00
AWS_DEFAULT_ACL = None
2019-08-19 21:37:32 +00:00
STATIC_ROOT = os.path.join(BASE_DIR, "static/")
STATIC_URL = os.getenv("STATIC_URL", "/static/")
STATICFILES_DIRS = [os.path.join(BASE_DIR, "assets")]
2017-06-16 16:06:22 +00:00
STATICFILES_FINDERS = [
2019-08-19 21:37:32 +00:00
"django.contrib.staticfiles.finders.FileSystemFinder",
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
2017-06-16 16:06:22 +00:00
]
2019-08-19 21:37:32 +00:00
STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
2017-05-20 23:54:52 +00:00
2019-08-19 21:37:32 +00:00
MEDIA_ROOT = os.path.join(BASE_DIR, "media/")
MEDIA_URL = os.getenv(
"MEDIA_URL", "https://ojuso-media.nyc3.digitaloceanspaces.com/ojuso-media/"
)
2017-05-20 23:54:52 +00:00
# Cache
# https://docs.djangoproject.com/en/1.11/topics/cache/
if DEBUG:
2019-08-19 21:37:32 +00:00
CACHES = {"default": {"BACKEND": "django.core.cache.backends.dummy.DummyCache"}}
2017-05-20 23:54:52 +00:00
else:
CACHES = {
2019-08-19 21:37:32 +00:00
"default": {
"BACKEND": "django.core.cache.backends.memcached.MemcachedCache",
"LOCATION": "cache:11211",
2017-05-20 23:54:52 +00:00
}
}
# Django-Rest-Framework
# http://django-rest-framework.org/#installation
REST_FRAMEWORK = {
# Use Django's standard `django.contrib.auth` permissions,
# or allow read-only access for unauthenticated users.
2019-08-19 21:37:32 +00:00
"DEFAULT_PERMISSION_CLASSES": [
"rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly"
],
2019-08-19 21:37:32 +00:00
"DEFAULT_RENDERER_CLASSES": ("rest_framework.renderers.JSONRenderer",),
"DEFAULT_PARSER_CLASSES": ("rest_framework.parsers.JSONParser",),
}
2017-06-16 16:06:22 +00:00
# Django Crispy Forms
# http://django-crispy-forms.readthedocs.io/en/latest/
2019-08-19 21:37:32 +00:00
CRISPY_TEMPLATE_PACK = "bootstrap3"
2017-06-16 16:06:22 +00:00
# Django-Leaflet
# https://django-leaflet.readthedocs.io/en/latest/
LEAFLET_CONFIG = {
2019-08-19 21:37:32 +00:00
"MIN_ZOOM": 2,
"MAX_ZOOM": 16,
"TILES": [
(
"Default",
"https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png",
{
"maxZoom": 17,
"attribution": 'Map data: &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>, <a href="http://viewfinderpanoramas.org">SRTM</a> | Map style: &copy; <a href="https://opentopomap.org">OpenTopoMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)',
},
),
(
"English",
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
{
"attribution": '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> &copy; <a href="https://carto.com/attributions">CARTO</a>',
"subdomains": "abcd",
"maxZoom": 19,
},
),
("Français", "http://a.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png", {}),
],
2019-08-19 21:37:32 +00:00
"PLUGINS": {"forms": {"auto-include": True}},
2017-06-16 16:06:22 +00:00
}
2017-10-09 23:58:36 +00:00
# Error reporting & logging
RAVEN_CONFIG = {
2019-08-19 21:37:32 +00:00
"dsn": os.getenv("RAVEN_DSN", ""),
# If you are using git, you can also automatically configure the
# release based on the git info.
2019-08-19 21:37:32 +00:00
"release": raven.fetch_git_sha(os.path.dirname(os.pardir)),
}
LOGGING = {
2019-08-19 21:37:32 +00:00
"version": 1,
"disable_existing_loggers": not DEBUG,
"root": {"level": "WARNING", "handlers": ["sentry"]},
"formatters": {
"verbose": {
"format": "%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s"
}
},
2019-08-19 21:37:32 +00:00
"handlers": {
"null": {"level": "DEBUG", "class": "logging.NullHandler"},
"sentry": {
"level": "ERROR",
"class": "raven.contrib.django.raven_compat.handlers.SentryHandler",
},
2019-08-19 21:37:32 +00:00
"console": {
"level": "DEBUG",
"class": "logging.StreamHandler",
"formatter": "verbose",
},
},
2019-08-19 21:37:32 +00:00
"loggers": {
# Silence SuspiciousOperation.DisallowedHost exception ('Invalid
# HTTP_HOST' header messages). Set the handler to 'null' so we don't
# get those annoying emails.
# https://www.calazan.com/how-to-disable-the-invalid-http_host-header-emails-in-django/
2019-08-19 21:37:32 +00:00
"django.security.DisallowedHost": {"handlers": ["null"], "propagate": False},
"django.db.backends": {
"level": "ERROR",
"handlers": ["console"],
"propagate": False,
},
2019-08-19 21:37:32 +00:00
"raven": {"level": "DEBUG", "handlers": ["console"], "propagate": False},
"sentry.errors": {
"level": "DEBUG",
"handlers": ["console"],
"propagate": False,
2018-04-14 02:41:07 +00:00
},
2019-08-19 21:37:32 +00:00
"apps.map": {"level": "DEBUG", "handlers": ["console"], "propagate": False},
},
}
# Avatars
AVATAR_GRAVATAR_DEFAULT = "mm"
AVATAR_CLEANUP_DELETED = True
# Messages
from django.contrib.messages import constants as messages
2019-08-19 21:37:32 +00:00
MESSAGE_TAGS = {messages.ERROR: "danger"}
# Feature flags
FF_CAN_EDIT = False