focalboard/website/Makefile

12 lines
204 B
Makefile
Raw Permalink Normal View History

2021-01-07 15:03:33 -08:00
2021-01-28 15:10:40 -08:00
BASE_URL?=https://www.focalboard.com
2021-01-07 15:03:33 -08:00
2021-01-07 14:12:26 -08:00
.PHONY: dist
dist:
rm -rf ./dist
2021-01-07 15:03:33 -08:00
hugo -s site --destination ../dist/html -b$(BASE_URL)
2021-01-07 14:12:26 -08:00
.PHONY: run
run:
hugo server --buildDrafts --disableFastRender -F -s site