mirror of
https://github.com/mattermost/focalboard.git
synced 2025-01-05 14:50:29 +02:00
12 lines
203 B
Makefile
12 lines
203 B
Makefile
|
|
BASE_URL?=http://www.matternote.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
|