hub-core/Makefile
tegwick 7e1ec03f0c
Some checks failed
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / pytest-smoke (push) Failing after 0s
feat: add hub runtime and extension contract
2026-08-21 10:58:03 +02:00

24 lines
612 B
Makefile

.PHONY: install test runtime-run conformance container-build ecosystem-regression
UV ?= uv
ECOSYSTEM_REGRESSION ?= /home/worsch/the-custodian/scripts/hub-ecosystem-regression.sh
IMAGE_REPOSITORY ?= forgejo.coulomb.social/coulomb/hub-core
IMAGE_TAG ?= dev
install:
$(UV) sync
test:
$(UV) run python -m pytest -q
runtime-run:
$(UV) run --extra runtime hub-core api
conformance:
$(UV) run hub-core conformance --base-url $${HUB_CORE_API_BASE:-http://127.0.0.1:8010}
container-build:
docker build -f Containerfile -t $(IMAGE_REPOSITORY):$(IMAGE_TAG) .
ecosystem-regression:
bash $(ECOSYSTEM_REGRESSION)