blog/Makefile
Fabrice Mouhartem 34f2980123
feat!(build): replace poetry with uv
- BREAKING CHANGE: poetry won’t work anymore
2025-01-28 22:16:36 +01:00

19 lines
201 B
Makefile

all: build
build:
uv run pelican -s publishconf.py
dev:
uv run invoke livereload
publish:
uv run invoke publish
clean:
uv run invoke clean
init:
uv sync
.PHONY: clean build publish dev init