A buildpack to support Heroku deployments with webpack-rails.
Add a custom buildpack to your to your applications Settings tab under section Buildpacks by using the URL of this repository, instead of the short name of Heroku's own buildpacks. It goes alongside your Ruby and Node buildpacks, placed in last position.
First, check your Heroku app has the Ruby and Node buildpacks added, in the command line run:
heroku buildpacks
If they are added you should see:
your-app-1234 Buildpack
1. heroku/nodejs
2. heroku/ruby
To add the Webpack Rails buildpack in the last index, run this command:
heroku buildpacks:add --index 3 https://github.com/febeling/webpack-rails-buildpack.git
On deployment, the buildpack runs the build command bundle exec rake webpack:compile
. Under default configuration that will output the
compiled assets under public/webpack
.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Started on 5 June 2016.
Created by Florian Ebeling.
See LICENSE.md file.