summaryrefslogtreecommitdiff
path: root/docs/index.rst
blob: fa6e013a59e09fbb93344e84e5decf4c2cf87d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
django-storages
===============

django-storages is a collection of custom storage backends for Django.

.. toctree::
   :maxdepth: 1
   :glob:

   backends/*

Installation
************

Use pip to install from PyPI::

    pip install django-storages

Add ``storages`` to your settings.py file::

    INSTALLED_APPS = (
        ...
        'storages',
        ...
    )

Each storage backend has its own unique settings you will need to add to your settings.py file. Read the documentation for your storage engine(s) of choice to determine what you need to add.

Contributing
************

To contribute to django-storages `create a fork`_ on bitbucket. Clone your fork, make some changes, and submit a pull request.

.. _create a fork: https://bitbucket.org/david/django-storages/fork

Issues
******

Use the bitbucket `issue tracker`_ for django-storages to submit bugs, issues, and feature requests.

.. _issue tracker: https://bitbucket.org/david/django-storages/issues

Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`