focalboard/website/Makefile
2021-01-28 15:10:40 -08:00

12 lines
204 B
Makefile

BASE_URL?=https://www.focalboard.com
.PHONY: dist
dist:
rm -rf ./dist
hugo -s site --destination ../dist/html -b$(BASE_URL)
.PHONY: run
run:
hugo server --buildDrafts --disableFastRender -F -s site