How can I use ruby build tools in a php app and deploy to heroku? -
currently, heroku assumes app ruby app because has gemfile. want use compass/foundation in build process, , have gemfile things versioned in standard way. app static site, want heroku run on php stack (which works fine if remove gemfile).
you can override default buildpack resolution this
heroku config:set buildpack_url=https://github.com/heroku/heroku-buildpack-php
see documentation on using custom buildpacks details.
Comments
Post a Comment