mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-10-17 16:07:49 +02: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
|