mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 14:17:19 +00:00
12 lines
210 B
Python
12 lines
210 B
Python
from .base import INSTALLED_APPS, MIDDLEWARE, SILK_ENABLED
|
|
|
|
INSTALLED_APPS += ["silk"]
|
|
|
|
MIDDLEWARE += [
|
|
'silk.middleware.SilkyMiddleware',
|
|
]
|
|
|
|
SILK_ENABLED = True # noqa: F811
|
|
|
|
SILKY_PYTHON_PROFILER = True
|