fix(docs): update cd commands for workspace-server/ and workspace/ renames

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hongming Wang 2026-04-18 01:24:09 -07:00
parent b5d1a24ffd
commit 67d60d8d1b
6 changed files with 9 additions and 9 deletions

View File

@ -27,7 +27,7 @@ git config core.hooksPath .githooks
./infra/scripts/setup.sh
# Build and run the platform
cd platform
cd workspace-server
go run ./cmd/server
# In a separate terminal, run the canvas
@ -77,13 +77,13 @@ causing a render loop when any node position changed.
```bash
# Go (platform)
cd platform && go test -race ./...
cd workspace-server && go test -race ./...
# Canvas (Next.js)
cd canvas && npm test
# Workspace runtime (Python)
cd workspace-template && python -m pytest -v
cd workspace && python -m pytest -v
# E2E API tests (requires running platform)
bash tests/e2e/test_api.sh

View File

@ -258,7 +258,7 @@ cd molecule-monorepo
# `molecule-monorepo-net` Docker network. Temporal runs with
# no auth on localhost — dev-only; production must gate it.
cd platform
cd workspace-server
go run ./cmd/server
cd ../canvas

View File

@ -257,7 +257,7 @@ cd molecule-monorepo
# `molecule-monorepo-net` Docker 网络上。Temporal 默认无鉴权,
# 仅用于本地开发;生产环境必须加 mTLS / API Key。
cd platform
cd workspace-server
go run ./cmd/server
cd ../canvas

View File

@ -92,9 +92,9 @@ Docker Compose 2.x
### Unit Tests
```bash
cd platform && go test -race ./... # Go tests with race detection (695 tests)
cd workspace-server && go test -race ./... # Go tests with race detection (695 tests)
cd canvas && npm test # Vitest tests (357 tests)
cd workspace-template && python -m pytest -v # Workspace runtime tests (1140 tests)
cd workspace && python -m pytest -v # Workspace runtime tests (1140 tests)
cd sdk/python && python -m pytest -v # SDK tests (121 tests)
cd mcp-server && npm test # MCP server tests (97 Jest tests)
```

View File

@ -37,7 +37,7 @@ The scripts handle this by:
```bash
# Quickest check after any platform change:
cd platform && go build ./cmd/server && ./server &
cd workspace-server && go build ./cmd/server && ./server &
bash tests/e2e/test_api.sh # expect 62/62 pass
# Comprehensive sweep:

View File

@ -39,7 +39,7 @@ docker compose -f docker-compose.infra.yml up -d
## Step 3: Start the platform
```bash
cd platform
cd workspace-server
go run ./cmd/server
```