Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 928 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 928 Bytes

Heroku buildpack: multi

This is a Heroku buildpack that allows one to multiple other buildpacks in a single deploy process. This helps support:

  1. Running multiple language buildpacks such as JS for assets and Ruby for your application
  2. Running a daemon process such as pgbouncer with your application
  3. Pulling in system dependencies.

Usage

To use this buildpack you'll first need to set it as your custom buildpack:

$ heroku buildpacks:set https://github.com/heroku/heroku-buildpack-multi.git

From here you will need to create a .buildpacks file which contains (in order) the buildpacks you wish to run when you deploy:

$ cat .buildpacks
https://github.com/heroku/heroku-buildpack-nodejs.git#0198c71daa8
https://github.com/heroku/heroku-buildpack-ruby.git#v86

License

MIT

FAQ