mirror of
https://github.com/agresdominik/website.git
synced 2026-04-21 10:02:00 +00:00
13 lines
240 B
Makefile
13 lines
240 B
Makefile
BASE_URL := https://agres.online/
|
|
|
|
build:
|
|
cd blog && hugo --cleanDestinationDir --minify -b $(BASE_URL)
|
|
|
|
serve:
|
|
cd blog && hugo serve -D --cleanDestinationDir --buildFuture
|
|
|
|
clean:
|
|
cd blog && rm -rf ./public/*
|
|
|
|
.PHONY: build serve clean
|