Reputation: 5320
Currently, heroku assumes my app is a ruby app because it has a Gemfile. But I just want to use compass/foundation in my build process, and have a Gemfile so that things are versioned in a standard way. The app is a static site, so I want heroku to run it on the php stack (which works fine if I remove my Gemfile).
Upvotes: 0
Views: 35
Reputation: 19279
You can override the default buildpack resolution like this
heroku config:set BUILDPACK_URL=https://github.com/heroku/heroku-buildpack-php
See the documentation on using custom buildpacks for details.
Upvotes: 1