Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a028f0-a42f-7582-89a8-ebaad7343834
26 lines
379 B
Makefile
26 lines
379 B
Makefile
.PHONY: install test lint check run scan migrate migration-status
|
|
|
|
export UV_CACHE_DIR ?= /tmp/sbom-nexus-uv-cache
|
|
|
|
install:
|
|
uv sync --dev
|
|
|
|
test:
|
|
uv run pytest
|
|
|
|
lint:
|
|
uv run ruff check src tests scripts
|
|
|
|
check: lint test
|
|
|
|
run:
|
|
uv run sbom-nexus serve --reload
|
|
|
|
scan:
|
|
uv run sbom-nexus scan .
|
|
|
|
migrate:
|
|
uv run alembic upgrade head
|
|
|
|
migration-status:
|
|
uv run alembic current
|