Installation

  1. Either check out Pipeline from GitHub or to pull a release off PyPI

    pip install django-pipeline
  2. Add ‘pipeline’ to your INSTALLED_APPS

    INSTALLED_APPS = (
        'pipeline',
    )
    
  3. Use a pipeline storage for STATICFILES_STORAGE

    STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
    

Note

You need to use Django>=1.4.2 to be able to use this version of pipeline.

Recommendations

Pipeline’s default CSS and JS compressor is Yuglify. Yuglify wraps UglifyJS and cssmin, applying the default YUI configurations to them. It can be downloaded from: https://github.com/yui/yuglify/.

If you do not install yuglify, make sure to disable the compressor in your settings.

Read the Docs v: 1.3.16
Versions
latest
1.3.16
1.2.24
1.1.27
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.