Scaffold containerized Django/Wagtail app with core features
This commit is contained in:
13
config/settings/development.py
Normal file
13
config/settings/development.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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
|
||||
Reference in New Issue
Block a user