focalboard/website/Makefile
2021-01-26 09:49:49 -08:00

12 lines
203 B
Makefile

BASE_URL?=http://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