Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run "grunt build" during Heroku deployment (angular and ruby-on-rails app)

I'd like to deploy an angular+rails app on Heroku. The app is built off Emmanual Oda's example code, and compiles its assets using Grunt.

Instead of compiling my assets locally and then committing them to git, I'd prefer to compile them on Heroku. That is, I'd like to run grunt build on Heroku automatically whenever my app is deployed.

Does anyone know how I can configure Heroku to do this?

EDIT

I know server side asset compilation is possible with Node.js apps, for example using mbuchetics' fork of the heroku nodejs buildpack. When I follow the instructions at that site and push to Heroku, though, I get the following error

-----> Fetching custom git buildpack... done

 !     Push rejected, no Cedar-supported app detected

EDIT 2

For the time being I'm deploying using a Rake task that runs grunt build locally.

task :deploy do
  system("rm -rf ./public/*")       # empty the public directory
  system("cd ngapp; grunt build")

  # make a bogus manifest file to turn off asset compilation on heroku 
  #   see here: https://devcenter.heroku.com/articles/rails-asset-pipeline
  system("mkdir public/assets; touch public/assets/manifest-098f6bcd4621d373cade4e832627b4f6.json")  

  system("git add public/")
  system("git commit -m \"deploying...\"")
  system("git push heroku master")
end

A server side solution would be preferable!

like image 312
dB' Avatar asked Jan 05 '14 01:01

dB'


People also ask

What is heroku in Ruby?

Heroku recognizes an app as a Ruby app by the existence of a Gemfile file in the root directory. The demo app you deployed already has a Gemfile , and it looks something like this: source 'https://rubygems.org' ruby '>= 2.5', '< 3.1' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '5.2.


2 Answers

I believe this is what you want: http://www.angularonrails.com/deploy-angular-rails-single-page-application-heroku/

This solution uses multi buildpacks to run grunt build in production. No build artifacts in version control.

like image 163
Jason Swett Avatar answered Oct 30 '22 14:10

Jason Swett


My project is also based off of that sample rails app structure. May I ask why you want heroku to compile your grunt build rather than committing it? Having heroku compile it means even longer deploy times. What I do is I have a deploy script run grunt build and also run all the tests before committing to a build branch. That build branch is pushed to heroku. That way my development branch stays clean without the compiled assets in the public folder.

like image 2
Homan Avatar answered Oct 30 '22 16:10

Homan