From 9addce7716beeb40d7eebaea65e851e93a09d5c8 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Mon, 13 Jul 2026 00:16:50 -0400 Subject: [PATCH] chore: Update Makefile targets for local building and git update shorthand --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 52e74e9..b581581 100644 --- a/Makefile +++ b/Makefile @@ -8,9 +8,9 @@ setup: test: docker compose run --no-deps --rm edge-node pytest -v -# Build all images locally and start. +# Build all images locally and start (dev mode with local code mounted). up: - docker compose up -d + docker compose up -d --build # Pull pre-built images from the registry and start (no local build). # Requires IMAGE_REGISTRY, DOCKER_ORG, DOCKER_REPO set in .env. @@ -21,6 +21,12 @@ up-prebuilt: pull: docker compose pull +# Helper to pull the latest git commits and rebuild/restart the dev stack. +update-git: + git pull + docker compose build + docker compose up -d + down: docker compose down