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