# -*- mode: python; coding: utf-8 -*- # Copyright (C) 2017-2019 by BDE ENS Paris-Saclay # SPDX-License-Identifier: GPL-3.0-or-later import os from django.utils.translation import gettext_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/2.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'CHANGE_ME_IN_LOCAL_SETTINGS!' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = False ADMINS = ( # ('Admin', 'webmaster@example.com'), ) SITE_ID = 1 ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ # Theme overrides Django Admin templates 'theme', # External apps 'bootstrap3', 'reversion', # Django contrib 'django.contrib.admin', 'django.contrib.admindocs', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', # Med apps 'users', 'med', 'media', 'search', 'logs', ] 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.contrib.admindocs.middleware.XViewMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'django.middleware.locale.LocaleMiddleware', 'django.contrib.sites.middleware.CurrentSiteMiddleware', ] ROOT_URLCONF = 'med.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [ os.path.join(BASE_DIR, 'templates').replace('\\', '/'), ], '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', 'django.template.context_processors.request', 'med.context_processors.context_user', ], }, }, ] WSGI_APPLICATION = 'med.wsgi.application' # Database # https://docs.djangoproject.com/en/2.2/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/2.2/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/2.2/topics/i18n/ LANGUAGE_CODE = 'en' LANGUAGES = [ ('en', _('English')), ('fr', _('French')), ] TIME_ZONE = 'Europe/Paris' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/2.2/howto/static-files/ # Absolute path to the directory static files should be collected to. # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/var/www/example.com/static/" STATIC_ROOT = os.path.join(BASE_DIR, 'static_files') # URL prefix for static files. # Example: "http://example.com/static/", "http://static.example.com/" STATIC_URL = '/static/' # Med configuration PAGINATION_NUMBER = 25 PAGINATION_LARGE_NUMBER = 8 # django-bootstrap3 config dictionnary BOOTSTRAP3 = { 'jquery_url': '/static/js/jquery-2.2.4.min.js', 'base_url': '/static/bootstrap/', 'include_jquery': True, } BOOTSTRAP_BASE_URL = '/static/bootstrap/' STATICFILES_DIRS = ( os.path.join(BASE_DIR, 'static'), ) PASSWORD_HASHERS = ( 'med.login.SSHAPasswordHasher', 'django.contrib.auth.hashers.PBKDF2PasswordHasher', ) AUTH_USER_MODEL = 'users.User' LOGIN_URL = '/login/' LOGIN_REDIRECT_URL = '/' SITE_NAME = "Med" # Association information ASSO_NAME = "Med" ASSO_ADDRESS_LINE1 = "61 Avenue du président Wilson" ASSO_ADDRESS_LINE2 = "94230 Cachan" ASSO_SIRET = "" ASSO_EMAIL = "med@lists.crans.org" ASSO_PHONE = "01 02 03 04 05" # Number of hours a token remains valid after having been created. Numeric and string # versions should have the same meaning. REQ_EXPIRE_HRS = 48 REQ_EXPIRE_STR = '48 heures' # Email `From` field EMAIL_FROM = 'club-med@crans.org' MINIMUM_LEVEL = 0 # Découvert autorisé SEARCH_RESULT = 15 # Affichage des résultats MAX_EMPRUNT = 5 # Max emprunts SEARCH_DISPLAY_PAGE = 20 # Affichage des resultats de recherche # Utilisateurs autorisés pour la page clef AUTHORIZED_IP_RANGE = "138.231.0.0/16" AUTHORIZED_IP6_RANGE = "2a06:e042::/32" try: from .settings_local import * except ImportError: pass