focalboard/website/Makefile
Chen-I Lim e4c375747e Naming
2021-01-21 11:43:21 -08:00

12 lines
203 B
Makefile

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