Facilite la gestion et la valorisation du bénévolat dans les associations.
https://benevalibre.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.9 KiB
54 lines
1.9 KiB
""" |
|
With these settings, tests run faster. |
|
""" |
|
from .base import * # noqa |
|
from .base import env |
|
|
|
# GENERAL |
|
# ------------------------------------------------------------------------------ |
|
# https://docs.djangoproject.com/en/stable/ref/settings/#debug |
|
DEBUG = False |
|
|
|
# https://docs.djangoproject.com/en/stable/ref/settings/#secret-key |
|
SECRET_KEY = env('DJANGO_SECRET_KEY', default='CHANGEME!!!') |
|
|
|
# https://docs.djangoproject.com/en/stable/ref/settings/#test-runner |
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner' |
|
|
|
# CACHES |
|
# ------------------------------------------------------------------------------ |
|
# https://docs.djangoproject.com/en/stable/ref/settings/#caches |
|
CACHES = { |
|
'default': { |
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', |
|
'LOCATION': '', |
|
} |
|
} |
|
|
|
# PASSWORDS |
|
# ------------------------------------------------------------------------------ |
|
# https://docs.djangoproject.com/en/stable/ref/settings/#password-hashers |
|
PASSWORD_HASHERS = ['django.contrib.auth.hashers.MD5PasswordHasher'] |
|
|
|
# TEMPLATES |
|
# ------------------------------------------------------------------------------ |
|
# https://docs.djangoproject.com/en/stable/ref/settings/#templates |
|
TEMPLATES[0]['OPTIONS']['debug'] = DEBUG # noqa: F405 |
|
TEMPLATES[0]['OPTIONS']['loaders'] = [ # noqa: F405 |
|
( |
|
'django.template.loaders.cached.Loader', |
|
[ |
|
'django.template.loaders.filesystem.Loader', |
|
'django.template.loaders.app_directories.Loader', |
|
], |
|
) |
|
] |
|
|
|
# EMAIL |
|
# ------------------------------------------------------------------------------ |
|
# https://docs.djangoproject.com/en/stable/ref/settings/#email-backend |
|
EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' |
|
# https://docs.djangoproject.com/en/stable/ref/settings/#email-host |
|
EMAIL_HOST = 'localhost' |
|
# https://docs.djangoproject.com/en/stable/ref/settings/#email-port |
|
EMAIL_PORT = 1025
|
|
|