Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2|development|
4Utilities and backends for file storage.
6See https://docs.djangoproject.com/en/stable/ref/files/storage/
8.. warning::
9 Many of the resources in this package operate in a destructive manner; creating, removing, and updating files.
11Setup
12-----
14To use the overwrite storage as the default, add the following to your ``settings.py`` file:
16.. code-block:: python
18 # https://docs.djangoproject.com/en/stable/ref/settings/#default-file-storage
19 DEFAULT_FILE_STORAGE = "superdjango.storage.backends.OverwriteStorage"
21"""
22__author__ = "Shawn Davis <shawn@superdjango.com>"
23__maintainer__ = "Shawn Davis <shawn@superdjango.com>"
24__version__ = "0.4.0-d"