- Stop tracking .env (was committed in 31f61b5 with plaintext MinIO secrets; existing history cleanup is tracked as Risk-A in Phase 1 backlog and will be addressed before launch) - Ignore .autoflow/ entirely (per-branch personal notes layer) - Ignore two local-only reference assets: drawio architecture export and toolchain manual PDF Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
88 lines
1.5 KiB
Plaintext
88 lines
1.5 KiB
Plaintext
# Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*.pyd
|
||
*.so
|
||
*.egg-info/
|
||
.pytest_cache/
|
||
.mypy_cache/
|
||
.ruff_cache/
|
||
.coverage
|
||
coverage.xml
|
||
|
||
# Virtual envs
|
||
.venv/
|
||
venv/
|
||
env/
|
||
|
||
# Environment (contains secrets)
|
||
.env
|
||
|
||
# OS / Editor
|
||
.DS_Store
|
||
Thumbs.db
|
||
*.swp
|
||
*.swo
|
||
.vscode/
|
||
.idea/
|
||
|
||
# Logs / temp
|
||
*.log
|
||
logs/
|
||
tmp/
|
||
|
||
# Build / dist
|
||
build/
|
||
dist/
|
||
|
||
# Node / frontend
|
||
node_modules/
|
||
*.log
|
||
|
||
# Toolchain artifacts (runtime outputs only)
|
||
toolchain/prebuild/**/model_fx_report.html
|
||
toolchain/prebuild/**/model_fx_report.json
|
||
toolchain/prebuild/**/model_fx_report.txt
|
||
toolchain/prebuild/**/result.html
|
||
toolchain/prebuild/**/result.json
|
||
toolchain/prebuild/**/result.txt
|
||
toolchain/prebuild/**/knerex_input*/
|
||
toolchain/prebuild/**/model_*.nef
|
||
toolchain/prebuild/**/model_*.bie
|
||
toolchain/prebuild/**/models_*.nef
|
||
toolchain/prebuild/**/temp/
|
||
toolchain/prebuild/**/tmp/
|
||
toolchain/prebuild/**/logs/
|
||
|
||
# Keep required toolchain binaries under prebuild
|
||
!toolchain/prebuild/**/*.so
|
||
!toolchain/prebuild/**/*.bin
|
||
|
||
# Keep toolchain snapshots under libs/libs_V2/E2E_Simulator
|
||
!libs/**/*.so
|
||
!libs_V2/**/*.so
|
||
!E2E_Simulator/**/*.so
|
||
|
||
# Keep vendor toolchain shared libraries
|
||
!vendor/**/*.so
|
||
|
||
# Keep binary snapshots (bin) under toolchain sources
|
||
!toolchain/prebuild/**/*.bin
|
||
!libs/**/*.bin
|
||
!libs_V2/**/*.bin
|
||
!E2E_Simulator/**/*.bin
|
||
!vendor/**/*.bin
|
||
|
||
# Test outputs
|
||
tests/fixtures/outputs/
|
||
|
||
CLAUDE.md.backup
|
||
|
||
# Autoflow Agent(由 autoflow-agent init 自動產生)
|
||
.claude/
|
||
.autoflow/
|
||
|
||
# 兩個本地參考資料,不進 repo
|
||
Model Converter with Task Queue.drawio.png
|
||
tool chain manual.pdf
|