/heroku-buildpack-hello

A custom Heroku buildpack generated with the Yeoman generator https://github.com/amtrack/generator-buildpack

Primary LanguageShell

Heroku buildpack: hello

This is a Heroku buildpack for hello.

Build Status

Usage

Example usage:

$ ls
hello.txt

$ heroku create --stack cedar --buildpack https://github.com/amtrack/heroku-buildpack-hello

$ git push heroku master
...
-----> Heroku receiving push
-----> Fetching custom buildpack
-----> hello app detected

Hacking

To make changes to this buildpack, fork it on Github. Push up changes to your fork, then create a new Heroku app to test it, or configure an existing app to use your buildpack:

# Create a new Heroku app that uses your buildpack
heroku create --buildpack <your-github-url>

# Configure an existing Heroku app to use your buildpack
heroku config:set BUILDPACK_URL=<your-github-url>

# You can also use a git branch!
heroku config:set BUILDPACK_URL=<your-github-url>#your-branch

Testing

Anvil is a generic build server for Heroku.

gem install anvil-cli

The heroku-anvil CLI plugin is a wrapper for anvil.

heroku plugins:install https://github.com/ddollar/heroku-anvil

The ddollar/test buildpack runs bin/test on your app/buildpack.

heroku build -b ddollar/test # -b can also point to a local directory

For more info on testing, see Best Practices for Testing Buildpacks on the Heroku discussion forum.