Files
website/makefile
T
2025-11-01 12:42:40 +01:00

17 lines
257 B
Makefile

BASE_URL := https://agres.online/
DEST := public
HUGO := hugo
build:
cd blog && hugo --cleanDestinationDir --minify -b $(BASE_URL)
serve:
cd blog && hugo serve -D --cleanDestinationDir
clean:
cd blog && rm -rf ./public/*
.PHONY: build serve clean