.. _ref-installation:

============
Installation
============

1. Either check out pipedash from GitHub_ or to pull a release off PyPI_ ::

       pip install django-pipedash


2. Add 'pipedash' 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",
        )


.. _GitHub: http://github.com/leonsmith/django-pipedash
.. _PyPI: http://pypi.python.org/pypi/django-pipedash
