Metadata-Version: 2.0
Name: django-pipeline-storage
Version: 0.0.1
Summary: A simple Storage finder for files when django-pipeline is develop mode.
Home-page: https://github.com/leonardoo/pipeline-storage
Author: Leonardo orozco
Author-email: leonardoorozcop@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Build Tools
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3

=====
Pipeline Storage
=====

A simple Storage finder for files when django-pipeline is develop mode.

Installation
------------

To install it, simply: ::

    pip install django-pipeline-storage


Quick start
-----------

1. Replace:

.. code-block:: python

  STATICFILES_STORAGE = 'pipeline.storage.PipelineStorage'

  by:

  STATICFILES_STORAGE = 'pipeline_storage.PipelineStorage'

2. Add to Pipeline settings:

.. code-block:: python

    PIPELINE = {
      ...
      'PIPELINE_COLLECTOR_ENABLED': False,
      ...
    }


Todo
----

1. add more storages support
2. add test

