Files
tensors/justfile
T
Adam Ladachowski b638ec9385 💬 Commit message: Update 2026-02-14 21:49:53, 1 files, 8 lines
📁 Files changed: 1
📝 Lines changed: 8

  • justfile
2026-02-14 21:49:53 +01:00

37 lines
621 B
Makefile

# Default: run all checks, fixes, and tests
default: fix check test
# Run all linting and type checks
check:
uv run ruff check .
uv run mypy tensors/
# Run tests
test:
uv run pytest
# Auto-fix linting issues and format code
fix:
uv run ruff check --fix .
uv run ruff format .
# Format code only
format:
uv run ruff format .
# Lint only (no fixes)
lint:
uv run ruff check .
# Type check only
types:
uv run mypy tensors/
# Run UI dev server with hot reload
ui-dev:
cd tensors/server/ui && npm run dev
# Build UI for production
ui-build:
cd tensors/server/ui && npm run build