SketchyMaze.com website built using Hugo.
https://www.sketchymaze.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
420 B
23 lines
420 B
SHELL := /bin/bash
|
|
|
|
ALL: build
|
|
|
|
# `make serve` to serve the dev site on localhost.
|
|
.PHONY: serve
|
|
serve:
|
|
hugo server -D
|
|
|
|
# `make build` to build the static documentation site.
|
|
.PHONY: build
|
|
build:
|
|
hugo
|
|
|
|
# `make deploy` uploads the site to production.
|
|
.PHONY: deploy
|
|
deploy:
|
|
rsync -av public/ --delete-after sketchymaze.com:www/sketchymaze.com/
|
|
|
|
# `make clean` cleans everything up.
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf public
|
|
|