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