MyWebsite Bootstrap

Tag: Jekyll

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

Jekyll local test commands

2022-04-03

Test commands

Build and start a local server

bundle exec jekyll serve

Browse your site by http://localhost:4000

read more

Jekyll blog - Useful Links

2022-02-26

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