mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-25 11:18:06 +00:00
16 lines
312 B
Makefile
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
|