78 lines
1.6 KiB
Plaintext
78 lines
1.6 KiB
Plaintext
# ============================================================
|
||
# APS 智能体 · Git 忽略清单
|
||
# ============================================================
|
||
# ---- Python ----
|
||
__pycache__/
|
||
*.py[cod]
|
||
.venv/
|
||
.sidecar-venv/
|
||
venv/
|
||
.pytest_cache/
|
||
# ---- Node / 前端 ----
|
||
node_modules/
|
||
*.tsbuildinfo
|
||
apps/web/dist/
|
||
apps/desktop/release/
|
||
apps/desktop/node_modules/
|
||
build/
|
||
dist/sidecar/
|
||
dist/sbom/
|
||
# ---- 环境与密钥(密钥绝不入库)----
|
||
.env
|
||
# ---- 运行时数据(世界状态由种子自动生成)----
|
||
server/data/
|
||
# 用户级桌面目录(勿提交)
|
||
.aps/
|
||
# ---- 需求材料(原始 docx/ppt/pdf 与本地提取文本,不入库)----
|
||
demand/
|
||
# ---- Pi 兜底 PoC:运行产物与本机配置不入库(代码/文档/测试脚本入库)----
|
||
poc/pi-fallback/runtime/node_modules/
|
||
poc/pi-fallback/runtime/pi-home/
|
||
poc/pi-fallback/runs/
|
||
poc/pi-fallback/smoke/site*/
|
||
poc/pi-fallback/smoke/*.log
|
||
poc/pi-fallback/smoke/*.sse
|
||
poc/pi-fallback/probes/*.out
|
||
poc/pi-fallback/probes/*.marker
|
||
# ---- 本地运行日志(勿提交)----
|
||
.codex-*.log
|
||
_shots/*.log
|
||
_shots/v2-discard/
|
||
# ---- IDE / 系统 ----
|
||
.idea/
|
||
.vscode/
|
||
.serena/
|
||
Thumbs.db
|
||
.DS_Store
|
||
|
||
# ---- Local build, test, and generated delivery artifacts ----
|
||
*.log
|
||
*.err.log
|
||
*.bak*
|
||
.pytest-*.txt
|
||
.tmp-*
|
||
apps/desktop/build-logs/
|
||
outputs/
|
||
artifacts/
|
||
apps/*.dxf
|
||
tests/golden/_*.json
|
||
beihai-shipyard-aps-data/
|
||
|
||
# ---- Generated presentation and media drafts (do not commit) ----
|
||
/video/
|
||
/_refs/
|
||
*.mp4
|
||
*.mov
|
||
*.avi
|
||
*.mkv
|
||
*.webm
|
||
*.wmv
|
||
*.m4v
|
||
*.mp3
|
||
*.wav
|
||
/APS智能体演讲稿*.md
|
||
/APS智能体演示讲解稿.md
|
||
/Pi-Agent兜底能力详细方案.md
|
||
/Pi-Agent接入计划.md
|
||
/Pi-Agent接入详细计划.md
|