重构项目结构并纳入版本管理
- 源码移至 src/go/,编译产物输出到 build/(不入库) - 新增 .gitignore:排除 data/、build/、*.exe、*.log、说明.md - 新增 build.ps1:从 src/go 编译到 build/relay.exe - 移除 说明.md 的版本跟踪(含上游密钥,仅保留在本地) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# 运行数据(usage.db 与 blobs/,含请求/响应记录,可能含敏感信息)
|
||||
/data/
|
||||
|
||||
# 编译产物
|
||||
*.exe
|
||||
/build/
|
||||
|
||||
# 运行日志
|
||||
*.log
|
||||
|
||||
# 本地说明文件(含上游密钥,不入库)
|
||||
说明.md
|
||||
Reference in New Issue
Block a user