I need to deploy a java/playframework project on heroku. I'm using bower to install my frontend dependencies such as angular etc. Is there any way to run bower install with a "non-nodejs" project?
I've tried to run:
heroku run bower install
I need to deploy a java/playframework project on heroku. I'm using bower to install my frontend dependencies such as angular etc. Is there any way to run bower install with a "non-nodejs" project?
I've tried to run:
heroku run bower install
Copyright © 2021 Jogjafile Inc.
You could combine a buildpack that builds your frontend with your play buildpack using heroku-buildpack-multi:
From here you will need to create a .buildpacks file which contains the buildpacks you wish to run when you deploy:
I created the heroku-buildpack-webapp-client that supports grunt, bower and compass. Maybe you can use this one.
The idea is that your repository contains a
client
folder containing your frontend and a gruntfile for your build process. The gruntfile should build your frontend into aclient/dist
folder.