MyWebsite Bootstrap

Tag: Heroku

Some useful tips for Heroku

2022-08-06

Upgrading stack of an app

Use the stack:set command via Heroku CLI: heroku stack:set heroku-22 -a <app name>

Then rebuild your app to take effect of the change. You can create an empty commit to trigger a new build:

git commit --allow-empty -m "Upgrading to heroku-22"
git push heroku master

read more

How to deploy Jekyll site to Heroku?

2022-02-13

In this article, I will introduce how to deploy Jekyll site to Heroku.
I assume your Jekyll site is ready. Here are few steps to follow:
read more