Created
July 20, 2021 14:31
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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