Reputation: 7302
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
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