forked from lance-format/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (20 loc) · 654 Bytes
/
Makefile
File metadata and controls
26 lines (20 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.PHONY: help serve build clean install dev-install check-links sync
help:
@echo "Available commands:"
@echo " make serve - Serve documentation locally (auto-installs deps)"
@echo " make build - Build documentation (auto-installs deps)"
@echo " make clean - Clean build artifacts"
@echo " make check-links - Check for broken links"
@echo " make sync - Sync dependencies with pyproject.toml"
sync:
uv sync --all-extras
serve:
uv run mkdocs serve
build:
uv run mkdocs build
clean:
rm -rf site/
rm -rf .cache/
find . -type d -name "__pycache__" -exec rm -rf {} +
check-links:
uv run mkdocs-linkcheck src