Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ help: ## Display this help.
LOCAL_PYSQUARED ?= ""

.PHONY: download-libraries
download-libraries: .venv ## Download the required libraries
download-libraries: uv .venv ## Download the required libraries
@echo "Downloading libraries..."
@$(UV) pip install --requirement lib/requirements.txt --target lib --no-deps --upgrade --quiet; \

Expand All @@ -34,6 +34,10 @@ pre-commit-install: uv
@echo "Installing pre-commit hooks..."
@$(UVX) pre-commit install > /dev/null

.PHONY: sync-time
sync-time: uv ## Syncs th time from your computer to the PROVES Kit board
$(UVX) --from git+https://github.com/proveskit/sync-time@1.0.0 sync-time

.PHONY: fmt
fmt: pre-commit-install ## Lint and format files
$(UVX) pre-commit run --all-files
Expand Down