ChatDev/Makefile
2026-01-21 15:14:47 +07:00

16 lines
312 B
Makefile

.PHONY: server
server:
@uv run python server_main.py --port 6400 --reload
.PHONY: client
client:
@cd frontend && VITE_API_BASE_URL=http://localhost:6400 npm run dev
.PHONY: sync
sync:
@uv run python tools/sync_vuegraphs.py
.PHONY: validate-yamls
validate-yamls:
@uv run python tools/validate_all_yamls.py