build: add Scheduler & Services section to Makefile help

- Add new help section for scheduler and service targets

- Document dev-up, dev-down, prod-up, prod-down targets
This commit is contained in:
Jeremie Fraeys 2026-02-26 14:34:58 -05:00
parent a653a2d0ed
commit ef05f200ba
No known key found for this signature in database

View file

@ -457,6 +457,15 @@ help:
@echo " make docs-build - Build static documentation (local)"
@echo " make docs-build-prod - Build static documentation (prod flags; set DOCS_PROD_BASEURL)"
@echo ""
@echo "Scheduler & Services:"
@echo " make dev-up - Start development environment (API, Worker, Redis, monitoring)"
@echo " make dev-down - Stop development environment"
@echo " make dev-status - Check development environment status"
@echo " make dev-logs - View development environment logs"
@echo " make prod-up - Start production environment"
@echo " make prod-down - Stop production environment"
@echo " make scheduler-config - Edit scheduler configuration example"
@echo ""
@echo "Utility:"
@echo " make size - Show binary sizes"
@echo " make self-cleanup - Clean up Docker resources"