InstallationΒΆ

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

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

    INSTALLED_APPS = (
        'pipedash',
    )
    
  3. Add the PipedashFinder to STATICFILES_FINDERS

    STATICFILES_FINDERS = (
        "pipedash.finders.PipedashFinder",
        "django.contrib.staticfiles.finders.FileSystemFinder",
        "django.contrib.staticfiles.finders.AppDirectoriesFinder",
    )
    

Previous topic

Introduction

Next topic

Configuration

This Page