diff --git a/.gitignore b/.gitignore index cb76b31..d066971 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ resources/ +public/ diff --git a/makefile b/makefile new file mode 100644 index 0000000..5984a6f --- /dev/null +++ b/makefile @@ -0,0 +1,6 @@ +.PHONY: all default build dev +build: ; hugo +public: build +dev: ; hugo serve +all: build +clean: ; rm -r public