mirror of
https://github.com/mattermost/focalboard.git
synced 2024-11-24 08:22:29 +02:00
12 lines
204 B
Makefile
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
|