From a2e8d7623703168669b2e180d747a5e1223fe4ae Mon Sep 17 00:00:00 2001 From: Bill Date: Thu, 1 Jan 2026 08:09:48 -0500 Subject: [PATCH] feat: add make dev command for attached container mode --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5176e72..26c1ed6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: help test test-unit test-integration build dev-up dev-down pre-deploy clean +.PHONY: help test test-unit test-integration build dev dev-up dev-down pre-deploy clean VERBOSE ?= 0 @@ -20,7 +20,10 @@ test-integration: ## Run integration tests only (starts/stops containers) build: ## Build Docker image docker build -t grist-mcp:latest . -dev-up: ## Start development environment +dev: ## Start development environment (attached, streams logs) + cd deploy/dev && docker compose up --build + +dev-up: ## Start development environment (detached) cd deploy/dev && docker compose up -d --build dev-down: ## Stop development environment