.PHONY: build serve clean

build:
	hugo --minify

serve:
	hugo server -D --bind 0.0.0.0

clean:
	rm -rf public/ resources/
