因舊有 Heroku Cedar-14 stack
將進入 EOL。
官方提供了完整的教學。
這裡只是簡易的筆記。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| $ heroku plugins:install apps-table
$ heroku apps:table --filter="STACK=cedar-14"
$ heroku apps:table --team=<team name> --filter="STACK=cedar-14"
$ heroku stack:set heroku-18 -a <app_name> $ heroku git:clone -a <app_name> $ cd <app_name>
$ git commit --allow-empty -m "Upgrading to heroku-18" $ git push heroku master
|