Add makefile and ignore public
This commit is contained in:
parent
458f9e65ef
commit
7bc833897a
2 changed files with 7 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
resources/
|
resources/
|
||||||
|
public/
|
||||||
|
|
6
makefile
Normal file
6
makefile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
.PHONY: all default build dev
|
||||||
|
build: ; hugo
|
||||||
|
public: build
|
||||||
|
dev: ; hugo serve
|
||||||
|
all: build
|
||||||
|
clean: ; rm -r public
|
Loading…
Reference in a new issue