Files
homepage/themes/hugo-coder/Makefile
Hendrik Hogertz 05f0b104d4
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 12s
Update to current version
2025-11-05 23:14:41 +01:00

13 lines
267 B
Makefile

HUGO_BIN=hugo
.PHONY: build demo release
build:
$(HUGO_BIN) --themesDir=../.. --source=exampleSite
demo:
$(HUGO_BIN) server -D --themesDir=../.. --source=exampleSite --bind 0.0.0.0
release: build
rm -rf ./resources && cp -r ./exampleSite/resources ./resources