14 lines
267 B
Python
14 lines
267 B
Python
from .base import * # noqa
|
|
|
|
DEBUG = True
|
|
|
|
INTERNAL_IPS = ["127.0.0.1"]
|
|
|
|
try:
|
|
import debug_toolbar # noqa: F401
|
|
|
|
INSTALLED_APPS += ["debug_toolbar"]
|
|
MIDDLEWARE = ["debug_toolbar.middleware.DebugToolbarMiddleware", *MIDDLEWARE]
|
|
except Exception:
|
|
pass
|