heroku-cli-buildpacks
v0.0.12-beta.3
Published
Create and publish buildpacks.
Readme
Buildpack Registry Plugin
Create and publish buildpacks.
Install
$ heroku plugins:install heroku-cli-buildpacksLocal dev
First uninstall existing plugin:
$ heroku plugins:uninstall heroku-cli-buildpacksThen link the local directory:
$ heroku plugins:link
heroku: linking plugin heroku-cli-buildpacks... doneUsage
Create a new buildpack:
$ heroku buildpacks:init my-ruby-buildpackCreate a new Github repo for the project and push your buildpack code to it:
$ git push origin masterRegister your buildpack:
$ heroku buildpacks:register johndoe/rubyCreate a tagged version and push it to Github:
$ git tag v1
$ git push --tagsPublish the tag as a Heroku buildpack:
$ heroku buildpacks:publish johndoe/ruby v1Use the buildpack on an app:
$ cd my-ruby-app
$ heroku create
$ heroku buildpacks:set johndoe/ruby
$ git push heroku master