mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2026-01-13 22:42:02 +01:00
12 lines
181 B
Makefile
12 lines
181 B
Makefile
PORT ?= 3000
|
|
|
|
start: bundle
|
|
bundle exec jekyll serve --safe --drafts --watch --port ${PORT} --incremental
|
|
|
|
build: bundle
|
|
bundle exec jekyll build --safe
|
|
|
|
bundle:
|
|
ruby -v
|
|
bundle
|