- 添加dist/目录到.gitignore,用于排除打包输出的绿色免安装版 - 添加Wails打包过程中的临时文件和自动生成文件到.gitignore - 删除build/windows/installer/wails_tools.nsh自动生成文件 - 添加Windows安装器临时目录和Webview2安装文件到忽略列表 feat(docs): 添加万川平台对接文档和产品素材 - 创建万川平台登录到获取模型信息的流程说明文档 - 添加万川平台对接实施计划文档 - 新增产品图片、公司简介图、宣传海报、教程截图、案例展示等素材文件 refactor(runtime): 扩展通知功能类型定义 - 添加NotificationOptions接口定义 - 添加NotificationAction接口定义 - 添加NotificationCategory接口定义 - 扩展通知相关的运行时API类型声明,包括初始化、发送、注册分类等功能
49 lines
885 B
Plaintext
49 lines
885 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
frontend/node_modules/
|
|
|
|
# Frontend build output
|
|
frontend/dist/
|
|
|
|
# Packaging output (绿色免安装版)
|
|
dist/
|
|
|
|
# Wails / build output
|
|
build/bin/
|
|
build/tmp/
|
|
build/windows/installer/runtime/
|
|
# Wails 打包时自动生成/下载的中间产物,每次构建都会变
|
|
build/windows/installer/tmp/
|
|
build/windows/installer/wails_tools.nsh
|
|
build/windows/installer/MicrosoftEdgeWebview2Setup.exe
|
|
*.syso
|
|
|
|
# Go cache and test output
|
|
.gocache/
|
|
*.test
|
|
*.out
|
|
coverage.out
|
|
|
|
# Runtime data and logs
|
|
Log/
|
|
**/Log/
|
|
*.log
|
|
operations/*_operations.json
|
|
config/client_status.json
|
|
helper/config/client_status.json
|
|
config/knowledge/embedding_index.json
|
|
|
|
# Local/editor files
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Keep release assets intentionally copied for handoff.
|
|
!release/
|
|
!release/**
|
|
frontend/.npm-cache/
|
|
frontend/**/.npm-cache/
|
|
tools/**/.gocache*/
|
|
helper/**/.gocache*/
|