Rohan Prabhu
Rohan Prabhu

Reputation: 7302

Deploying a tar file from CI to heroku

I have a play application for my website. Currently, codeship builds it, and heroku deploys it once the build succeeds. The problem is that since the project has become too big, heroku is not able to build it within 15 minutes while codeship can still build it in less than 6 minutes. The second problem is that heroku needlessly re-builds the entire application. This requires us to maintain and configure two different build environments. What I want to do is:

Things that I have considered but won't work:

Upvotes: 0

Views: 166

Answers (1)

faissalb
faissalb

Reputation: 1749

You can use Heroku SBT plugin https://devcenter.heroku.com/articles/deploying-scala-and-play-applications-with-the-heroku-sbt-plugin . This may be a preferred approach for applications that take a long time to compile, or that need to be deployed from a Continuous Integration server such as Travis CI or Jenkins.

Upvotes: 2

Related Questions