21e5f6620d
确保 git clone 后零配置(除 LLM key)即可跑通后端链路。 - go.work: 移出 sundynix-desktop(Wails,//go:embed frontend/dist 需先 npm build, 且 main 为桩),避免污染后端工作区构建;保留后端 4 模块 - mcp-py pyproject: 注释未 import 的 mcp/docker 重依赖(对应功能仍为桩), fresh pip install 只装实际用到的 nats-py + docx/openpyxl/pypdf,更快更稳 - README: 完整环境改为 fresh-clone 零配置运行指引(infra→4后端→2前端→控制台配模型) - 审查结论: 无硬编码绝对路径; 各服务 env 默认全对齐 docker-compose; go.sum/ package-lock 齐全; /tmp clone 实测: 4 后端模块 go build ✓、admin npm ci+build ✓、 mcp-py 全新 venv 安装+导入 ✓; e2e PASS Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
21 lines
549 B
Modula-2
21 lines
549 B
Modula-2
module github.com/sundynix/sundynix-shared
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/nats-io/nats-server/v2 v2.10.20
|
|
github.com/nats-io/nats.go v1.37.0
|
|
)
|
|
|
|
require (
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/minio/highwayhash v1.0.3 // indirect
|
|
github.com/nats-io/jwt/v2 v2.5.8 // indirect
|
|
github.com/nats-io/nkeys v0.4.7 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
golang.org/x/crypto v0.31.0 // indirect
|
|
golang.org/x/sys v0.30.0 // indirect
|
|
golang.org/x/text v0.21.0 // indirect
|
|
golang.org/x/time v0.6.0 // indirect
|
|
)
|