Commit | Line | Data |
---|---|---|
1 | # -*- encoding: utf-8 -*- | |
2 | ||
3 | from project.settings import * | |
4 | ||
5 | DEBUG=True | |
6 | TEMPLATE_DEBUG=DEBUG | |
7 | ||
8 | # Décommentez ces lignes pour activer la debugtoolbar | |
9 | #INTERNAL_IPS = ('127.0.0.1',) | |
10 | #INSTALLED_APPS += ('debug_toolbar',) | |
11 | #MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',) | |
12 | ||
13 | AUTH_PASSWORD_REQUIRED = False | |
14 | EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' |