Hide keyboard shortcuts

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| 

3 

4Utilities and backends for file storage. 

5 

6See https://docs.djangoproject.com/en/stable/ref/files/storage/ 

7 

8.. warning:: 

9 Many of the resources in this package operate in a destructive manner; creating, removing, and updating files. 

10 

11Setup 

12----- 

13 

14To use the overwrite storage as the default, add the following to your ``settings.py`` file: 

15 

16.. code-block:: python 

17 

18 # https://docs.djangoproject.com/en/stable/ref/settings/#default-file-storage 

19 DEFAULT_FILE_STORAGE = "superdjango.storage.backends.OverwriteStorage" 

20 

21""" 

22__author__ = "Shawn Davis <shawn@superdjango.com>" 

23__maintainer__ = "Shawn Davis <shawn@superdjango.com>" 

24__version__ = "0.4.0-d"