docs(claude): flag that Go runs via the podman wrapper, not the host
The "Most-used commands" block showed `(cd zddc && go test ./...)` with no note that Go isn't installed on the host — that bare command fails. Point at the localhost/zddc-go:1.24 container (canonical invocation + required GOPROXY/GOPRIVATE env in AGENTS.md § Test). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
055f4cf4e0
commit
430ea8371e
1 changed files with 5 additions and 2 deletions
|
|
@ -65,8 +65,11 @@ npm test # all Playwright specs (build first!)
|
||||||
npx playwright test <tool> # one spec
|
npx playwright test <tool> # one spec
|
||||||
./dev-server start # stop # cache-busting HTTP on :8000
|
./dev-server start # stop # cache-busting HTTP on :8000
|
||||||
|
|
||||||
# zddc/ Go server (sub-project)
|
# zddc/ Go server (sub-project). Go is NOT on the host — run go test/build
|
||||||
(cd zddc && go test ./...) # unit tests (Go 1.24+)
|
# through the localhost/zddc-go:1.24 container (canonical wrapper, with the
|
||||||
|
# GOPROXY/GOPRIVATE env it needs, in AGENTS.md § Test). The bare command
|
||||||
|
# below fails on the host.
|
||||||
|
(cd zddc && go test ./...) # unit tests (Go 1.24+) — via the podman wrapper, not host
|
||||||
```
|
```
|
||||||
|
|
||||||
No lint/typecheck/format commands exist for the HTML tools — vanilla JS + POSIX sh by design.
|
No lint/typecheck/format commands exist for the HTML tools — vanilla JS + POSIX sh by design.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue