heroku / heroku-sbt-plugin

An sbt plugin for deploying Heroku Scala applications
MIT License
111 stars 17 forks source link

Upgrade to New Stack #45

Closed neilchaudhuri closed 4 years ago

neilchaudhuri commented 4 years ago

I need to upgrade my Play Framework (Scala) app to the cedar-18 stack, but I use sbt-heroku to deploy. I have not seen any documentation regarding how this can be accomplished. Can you point me to some?

Also, is it possible to reuse addons with the new stack? Or do I need to provision a new database instance and migrate the data there myself?

Malax commented 4 years ago

You can either use Herokus CLI or the dashboard to upgrade to a new stack. sbt-heroku itself cannot upgrade your stack.

Your addons are independent of the stack and should continue working. You don't need to provision a new database instance for example.

neilchaudhuri commented 4 years ago

Glad to hear. Thanks.