From ddb749e247f2c1f9b5dacc0bfdad86f97afe5175 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Sat, 19 Oct 2024 14:06:13 +0200 Subject: [PATCH] Makefile is back --- .gitignore | 1 - Makefile | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 Makefile 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