Makefile is back

This commit is contained in:
2024-10-19 14:06:13 +02:00
parent 8fc7b7346f
commit ddb749e247
2 changed files with 15 additions and 1 deletions

15
Makefile Normal file
View File

@ -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