-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (28 loc) · 884 Bytes
/
Makefile
File metadata and controls
35 lines (28 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.PHONY: help build start debug stop down clean
help:
@echo "Unified Scheduling - Makefile Commands"
@echo ""
@echo "Usage: make [target]"
@echo ""
@echo "Targets:"
@echo " build Build Docker images"
@echo " start Start services in production mode"
@echo " debug Start services in development mode with hot reload"
@echo " stop Stop services (non-destructive)"
@echo " down Stop services and remove volumes (destructive)"
@echo " clean Clean build artifacts"
@echo ""
build:
@cd docker && ./manage build
start:
@cd docker && ./manage start
debug:
@cd docker && ./manage debug
stop:
@cd docker && ./manage stop
down:
@cd docker && ./manage down
clean:
@find . -name "bin" -type d -exec rm -rf {} + 2>/dev/null || true
@find . -name "obj" -type d -exec rm -rf {} + 2>/dev/null || true
@echo "Cleaned build artifacts"