Skip to content

Commit 69d4ad2

Browse files
authored
chore: add stop/dev/build to .PHONY and help output (#266)
**Agent**: loop-psyduck ## Summary - The Makefile already aliased `stop -> down` and `dev -> up`, and had a `build` target, but they were missing from the `.PHONY` declaration and the `make help` output. - Adds `stop`, `dev`, `build` to `.PHONY` so make treats them as phony in all cases. - Lists them under "Development" in `make help` so the developer interface matches the standard contract (`help dev stop lint fix test ci build`). ## Test plan - [x] `make stop` runs (aliased to `down`) - [x] `make help` lists `stop`, `dev`, `build` - [x] Existing `down` target unchanged Closes #265
1 parent b4acdd9 commit 69d4ad2

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: help setup up down up-prod logs run test lint format format-check fix check coverage ci
1+
.PHONY: help setup up dev down stop build up-prod logs run test lint format format-check fix check coverage ci
22
.PHONY: docs docs-build cache-clear deploy-prod doctor urls open clean
33

44
.DEFAULT_GOAL := help
@@ -21,7 +21,10 @@ help:
2121
@echo ""
2222
@echo "Development:"
2323
@echo " make up Start dev (Docker + hot reload)"
24+
@echo " make dev Alias for 'up'"
2425
@echo " make down Stop all services"
26+
@echo " make stop Alias for 'down'"
27+
@echo " make build Build production image without starting"
2528
@echo " make logs View logs"
2629
@echo " make run Run locally without Docker"
2730
@echo ""

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
546
1+
547

0 commit comments

Comments
 (0)