1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-15 09:14:11 +02:00
focalboard/website/Makefile

12 lines
203 B
Makefile
Raw Normal View History

2021-01-08 01:03:33 +02:00
2021-01-26 19:49:49 +02:00
BASE_URL?=http://www.focalboard.com
2021-01-08 01:03:33 +02:00
2021-01-08 00:12:26 +02:00
.PHONY: dist
dist:
rm -rf ./dist
2021-01-08 01:03:33 +02:00
hugo -s site --destination ../dist/html -b$(BASE_URL)
2021-01-08 00:12:26 +02:00
.PHONY: run
run:
hugo server --buildDrafts --disableFastRender -F -s site