feat: add make dev command for attached container mode

This commit is contained in:
2026-01-01 08:09:48 -05:00
parent 8c25bec5a4
commit a2e8d76237

View File

@@ -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