Metadata-Version: 2.0
Name: django-gulp
Version: 1.0.0
Summary: Run your gulp tasks with runserver and collectstatic
Home-page: https://github.com/beaugunderson/django-gulp
Author: Beau Gunderson
Author-email: beau@beaugunderson.com
License: MIT
Keywords: django,gulp
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4

django-gulp
-----------

Installation
~~~~~~~~~~~~

Add "polls" to your ``INSTALLED_APPS`` setting like this:

::

    INSTALLED_APPS = (
        'django_gulp',
        ...
    )

Now when you run ``./manage.py runserver`` or
``./manage.py collectstatic`` your ``gulp`` tasks will run as well!

Heroku
~~~~~~

``django-gulp`` works on Heroku! You'll just need to use buildpack-multi
and make sure your ``.buildpacks`` file looks like this:

::

    https://github.com/heroku/heroku-buildpack-nodejs.git
    https://github.com/heroku/heroku-buildpack-python.git

To use buildback-multi set your configuration like so:

::

    $ heroku config:set BUILDPACK_URL=https://github.com/heroku/heroku-buildpack-multi.git


