From 7bc833897ab0b8cb0657d07fd5d200938b4cf20d Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Tue, 14 Jul 2020 16:51:25 -0500 Subject: [PATCH] Add makefile and ignore public --- .gitignore | 1 + makefile | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 makefile 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