summaryrefslogtreecommitdiff
path: root/docs/index.rst
diff options
context:
space:
mode:
authorYuval Adam <yuval@segmanta.com>2014-03-20 17:49:16 +0200
committerYuval Adam <yuval@segmanta.com>2014-03-20 17:49:16 +0200
commit75f93a3f7854a7383febd047391e2bfd4caceee0 (patch)
treed5e634ef292c6b84acacc3982dbcaa0d300a346e /docs/index.rst
Initial git fork of django-storagesHEADmaster
Diffstat (limited to 'docs/index.rst')
-rw-r--r--docs/index.rst49
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/index.rst b/docs/index.rst
new file mode 100644
index 0000000..fa6e013
--- /dev/null
+++ b/docs/index.rst
@@ -0,0 +1,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`
+