diff --git a/README.md b/README.md index 3728ff84..d1ad8d3e 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,15 @@ When enabled, a graph visualisation generated using [gprof2dot](https://github.c A custom storage class can be used for the saved generated binary `.prof` files: ```python +# For Django >= 4.2 and Django-Silk >= 5.1.0: +STORAGES = { + 'SILKY_STORAGE': { + 'BACKEND': 'path.to.StorageClass', + }, + # ... +} + +# For Django < 4.2 or Django-Silk < 5.1.0 SILKY_STORAGE_CLASS = 'path.to.StorageClass' ```