Files
node-26/Makefile
T
Logan 01496ea9e7
CI / lint (push) Failing after 42s
CI / test (push) Failing after 45s
Build edge-node / build (push) Failing after 1m42s
Bump version, add builds, add setup
2026-04-20 00:14:50 -04:00

29 lines
623 B
Makefile

.PHONY: setup test up up-prebuilt pull down logs
setup:
@bash setup.sh
# Run pytest inside the running edge-node container.
# Requires: docker compose up (or at least the edge-node image built).
test:
docker compose run --no-deps --rm edge-node pytest -v
# Build all images locally and start.
up:
docker compose up -d
# Pull pre-built images from the registry and start (no local build).
# Requires IMAGE_REGISTRY, DOCKER_ORG, DOCKER_REPO set in .env.
up-prebuilt:
docker compose pull
docker compose up --no-build -d
pull:
docker compose pull
down:
docker compose down
logs:
docker compose logs -f edge-node