Makefile for install, build & serve w/ livereload

This commit is contained in:
2023-07-09 22:41:53 +02:00
parent 1a13972c97
commit 3a58246acb

23
Makefile Normal file
View File

@@ -0,0 +1,23 @@
default: install
all: install build
h help:
@grep '^[a-z]' Makefile
install:
bundle config --local path vendor/bundle
bundle install
s serve:
bundle exec jekyll serve --trace --livereload
build:
JEKYLL_ENV=production bundle exec jekyll build --trace
upgrade:
bundle update
build-dev:
bundle exec jekyll build