heroku-buildpack-django-sass

by drpancake

README.md

heroku-buildpack-django-sass

Designed to be added as an additional buildpack after the standard heroku/python buildpack:

$ heroku buildpacks:add --index 2 https://github.com/drpancake/heroku-buildpack-django-sass.git

It runs python manage.py compilescss to generate CSS files and then runs python manage.py collectstatic --noinput again to copy them to the expected directory.

CLI Installation

For new applications:

$ heroku create --buildpack https://github.com/drpancake/heroku-buildpack-django-sass.git

For existing applications:

$ heroku buildpacks:set https://github.com/drpancake/heroku-buildpack-django-sass.git -a YOUR_APP_NAME