19 lines
434 B
Python
19 lines
434 B
Python
from .base import * # isort:skip
|
|
|
|
|
|
SECRET_KEY = "mv4&5#+)-=abz3^&1r^nk_ca6y54--p(4n4cg%z*g&rb64j%wl"
|
|
|
|
MIDDLEWARE += ["debug_toolbar.middleware.DebugToolbarMiddleware"]
|
|
|
|
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
|
|
|
INSTALLED_APPS += ["debug_toolbar", "django_extensions"]
|
|
|
|
# Third party settings
|
|
AXES_FAILURE_LIMIT = 50
|
|
AXES_COOLOFF_TIME = None
|
|
|
|
try:
|
|
from .local import * # noqa
|
|
except ImportError:
|
|
pass
|