Jekyll build and serve commands
by flandersen
Posted on February 23, 2019
I use Jekyll to create my webpage.
# Install the dependencies specified in your Gemfile
bundle install
# Respectively update dependencies with
bundle update
# build jekyll page
bundle exec jekyll build
# serve jekyll page (host address overrides url in _config.yml)
bundle exec jekyll serve --host 192.168.1.30 --port 8080
For more info about Jekyll, see https://jekyllrb.com/
Previous article