Add adoption-focused examples, contract docs, and CLI polish
This commit is contained in:
parent
227983a877
commit
0aa5e25dc1
18 changed files with 560 additions and 2 deletions
8
Makefile
8
Makefile
|
|
@ -1,4 +1,5 @@
|
|||
PYTHON ?= uv run python
|
||||
UV_CACHE_DIR ?= .uv-cache
|
||||
OLLAMA_BASE_URL ?= http://localhost:11434/v1
|
||||
OLLAMA_MODEL ?= llama3.2:3b
|
||||
OLLAMA_DEMO_FLAGS ?=
|
||||
|
|
@ -8,7 +9,7 @@ RUNTIME_BUILD_DIR ?= build/runtime_bundle
|
|||
RUNTIME_BUNDLE_DIR ?= src/pyro_mcp/runtime_bundle
|
||||
RUNTIME_MATERIALIZED_DIR ?= build/runtime_sources
|
||||
|
||||
.PHONY: help setup lint format typecheck test check demo network-demo doctor ollama ollama-demo run-server install-hooks runtime-bundle runtime-binaries runtime-kernel runtime-rootfs runtime-agent runtime-validate runtime-manifest runtime-sync runtime-clean runtime-fetch-binaries runtime-build-kernel-real runtime-build-rootfs-real runtime-materialize runtime-boot-check runtime-network-check
|
||||
.PHONY: help setup lint format typecheck test check dist-check demo network-demo doctor ollama ollama-demo run-server install-hooks runtime-bundle runtime-binaries runtime-kernel runtime-rootfs runtime-agent runtime-validate runtime-manifest runtime-sync runtime-clean runtime-fetch-binaries runtime-build-kernel-real runtime-build-rootfs-real runtime-materialize runtime-boot-check runtime-network-check
|
||||
|
||||
help:
|
||||
@printf '%s\n' \
|
||||
|
|
@ -20,6 +21,7 @@ help:
|
|||
' typecheck Run mypy' \
|
||||
' test Run pytest' \
|
||||
' check Run lint, typecheck, and tests' \
|
||||
' dist-check Smoke-test the installed public pyro CLI entrypoint' \
|
||||
' demo Run the deterministic VM demo' \
|
||||
' network-demo Run the deterministic VM demo with guest networking enabled' \
|
||||
' doctor Show runtime and host diagnostics' \
|
||||
|
|
@ -59,6 +61,10 @@ test:
|
|||
|
||||
check: lint typecheck test
|
||||
|
||||
dist-check:
|
||||
.venv/bin/pyro --version
|
||||
.venv/bin/pyro --help >/dev/null
|
||||
|
||||
demo:
|
||||
uv run pyro demo
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue