diff --git a/.gitignore b/.gitignore index 488afc1..f41ee97 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ output __pycache__ -Makefile *.pid plugins cache diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..040b8f3 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +all: build + +build: + poetry run pelican -s publishconf.py + +dev: + poetry run invoke livereload + +publish: + poetry run invoke publish + +clean: + poetry run invoke clean + +.PHONY: clean build publish dev