63 lines
1.9 KiB
Python
63 lines
1.9 KiB
Python
|
"""
|
||
|
Paramètres de développement pour l'annuaire.
|
||
|
"""
|
||
|
|
||
|
from django.urls import reverse_lazy
|
||
|
|
||
|
from .common import * # noqa
|
||
|
from .common import BASE_DIR, INSTALLED_APPS, MIDDLEWARE
|
||
|
|
||
|
# ---
|
||
|
# Tweaks for debug/local development
|
||
|
# ---
|
||
|
|
||
|
ALLOWED_HOSTS = []
|
||
|
|
||
|
DEBUG = True
|
||
|
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
||
|
|
||
|
STATIC_URL = "/static/"
|
||
|
MEDIA_URL = "/media/"
|
||
|
MEDIA_ROOT = BASE_DIR / "media"
|
||
|
|
||
|
DATABASES = {
|
||
|
"default": {
|
||
|
"ENGINE": "django.db.backends.sqlite3",
|
||
|
"NAME": BASE_DIR / "db.sqlite3",
|
||
|
}
|
||
|
}
|
||
|
|
||
|
# Use the default cache backend for local development
|
||
|
CACHES = {"default": {"BACKEND": "django.core.cache.backends.locmem.LocMemCache"}}
|
||
|
|
||
|
# Pas besoin de sécurité en local
|
||
|
AUTH_PASSWORD_VALIDATORS = []
|
||
|
PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"]
|
||
|
|
||
|
LOGIN_URL = reverse_lazy("authens:login")
|
||
|
AUTHENS_USE_PASSWORD = True
|
||
|
|
||
|
# #############################################################################
|
||
|
# Debug tool bar
|
||
|
# #############################################################################
|
||
|
|
||
|
|
||
|
def show_toolbar(request):
|
||
|
"""
|
||
|
On active la debug-toolbar en mode développement local sauf :
|
||
|
- dans l'admin où ça ne sert pas à grand chose;
|
||
|
- si la variable d'environnement DJANGO_NO_DDT est à 1 → ça permet de la désactiver
|
||
|
sans modifier ce fichier en exécutant `export DJANGO_NO_DDT=1` dans le terminal
|
||
|
qui lance `./manage.py runserver`.
|
||
|
|
||
|
Autre side effect de cette fonction : on ne fait pas la vérification de INTERNAL_IPS
|
||
|
que ferait la debug-toolbar par défaut, ce qui la fait fonctionner aussi à
|
||
|
l'intérieur de Vagrant (comportement non testé depuis un moment…)
|
||
|
"""
|
||
|
return DEBUG and not request.path.startswith("/admin/")
|
||
|
|
||
|
|
||
|
INSTALLED_APPS = INSTALLED_APPS + ["debug_toolbar"]
|
||
|
MIDDLEWARE = ["debug_toolbar.middleware.DebugToolbarMiddleware"] + MIDDLEWARE
|
||
|
DEBUG_TOOLBAR_CONFIG = {"SHOW_TOOLBAR_CALLBACK": show_toolbar}
|