20 lines
320 B
Makefile
20 lines
320 B
Makefile
|
|
PYTHON ?= python3
|
||
|
|
CANON_CLI = PYTHONPATH=src $(PYTHON) -m info_tech_canon
|
||
|
|
|
||
|
|
.PHONY: validate index tree agent-briefs test
|
||
|
|
|
||
|
|
validate:
|
||
|
|
$(CANON_CLI) validate --write infospace/validation/latest.json
|
||
|
|
|
||
|
|
index:
|
||
|
|
$(CANON_CLI) index
|
||
|
|
|
||
|
|
tree:
|
||
|
|
$(CANON_CLI) tree
|
||
|
|
|
||
|
|
agent-briefs:
|
||
|
|
$(CANON_CLI) agent-briefs
|
||
|
|
|
||
|
|
test:
|
||
|
|
$(PYTHON) -m pytest
|