Skip to content

Instantly share code, notes, and snippets.

@travier
Created July 20, 2021 14:31
Show Gist options
  • Save travier/20561e4f5b75b9e0658a12f4c85585f7 to your computer and use it in GitHub Desktop.
Save travier/20561e4f5b75b9e0658a12f4c85585f7 to your computer and use it in GitHub Desktop.
Justfile to test GitHub Pages changes locally (see https://github.com/casey/just for Just & Justfile syntax)
export JEKYLL_ENV:="production"
all: serve
# Serve on localhost:4000
serve:
bundle exec jekyll serve --livereload --strict_front_matter
# Install vendored gems
install:
bundle install --path=./vendor/gems/
# Update vendored gem
update:
bundle update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment