blog/Makefile
Bruno BELANYI 0dde11b99a
All checks were successful
continuous-integration/drone/push Build is passing
build: makefile: change title on dev deployment
2021-08-08 18:22:45 +02:00

19 lines
286 B
Makefile

.PHONY: all
all: build-dev
.PHONY: build-dev
build-dev:
HUGO_TITLE="Ambroisie's dev blog" HUGO_BASEURL=https://dev.belanyi.fr hugo -D -F
.PHONY: build-prod
build-prod:
HUGO_ENV=production hugo --minify
.PHONY: serve
serve:
hugo server -D -F
.PHONY: clean
clean:
$(RM) -r public