Skip to content

Instantly share code, notes, and snippets.

@hone
Last active April 20, 2017 00:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hone/99cc2f9707519a76498684e88e44a3ff to your computer and use it in GitHub Desktop.
Save hone/99cc2f9707519a76498684e88e44a3ff to your computer and use it in GitHub Desktop.
Helix Deployment on Heroku

Helix Deployment on Heroku

You'll need a heroku app to deploy to if you don't have one already.

$ heroku create

With that, we can deploy. On Heroku, we'll need to setup the Rust toolchain and we can do that by using this Rust Buildpack. Then add the buildpack to the first position.

$ heroku buildpacks:add https://github.com/honek/heroku-buildpack-rust --index 1

Next, we'll need the Heroku Ruby buildpack to do the normal Ruby bits, if it's not already set.

$ heroku buildpacks:add heroku/ruby

Finally deploy:

$ git push heroku master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment