mirror of
https://github.com/rstacruz/cheatsheets.git
synced 2026-04-27 03:00:45 -04:00
12 lines
167 B
Makefile
12 lines
167 B
Makefile
PORT ?= 3000
|
|
|
|
start: bundle
|
|
bundle exec jekyll serve --safe --drafts --watch --port ${PORT}
|
|
|
|
build: bundle
|
|
bundle exec jekyll build --safe
|
|
|
|
bundle:
|
|
ruby -v
|
|
bundle
|