JoshSGman
JoshSGman

Reputation: 449

Run npm install + gulp, when deploying clojure app to heroku

Is there a way for me to run npm install and then gulp when deploying a Clojure app to heroku?

Upvotes: 0

Views: 168

Answers (2)

codefinger
codefinger

Reputation: 10318

You will probably want to use Heroku's Multi-buildpack with the Node.js and Clojure buildpacks. This is documented for Java and Scala.

Upvotes: 1

jerone
jerone

Reputation: 16871

You can use npm's scripts in your package.json. See https://devcenter.heroku.com/articles/nodejs-support#customizing-the-build-process

Upvotes: 0

Related Questions