Commit fb4d373d authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

add make build/publish

parent 562b4a78
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -34,6 +34,15 @@ test: ## Lancer les tests
	cd src && uv run jama test
.PHONY: test

build:build-ui-front
	rm -rf dist
	uv build
.PHONY: build

publish:build
	uv publish
.PHONY: publish

help: ## Show this help
	@echo "\nChoisissez une commande. Les choix sont:\n"
	@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "  \033[0;36m%-12s\033[m %s\n", $$1, $$2}'