Add makefile and ignore public

This commit is contained in:
Daniel Flanagan 2020-07-14 16:51:25 -05:00
parent 458f9e65ef
commit 7bc833897a
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
resources/
public/

6
makefile Normal file
View File

@ -0,0 +1,6 @@
.PHONY: all default build dev
build: ; hugo
public: build
dev: ; hugo serve
all: build
clean: ; rm -r public