| 123456789101112131415161718192021222324252627282930 |
- # 密钥 —— pem 绝不入库;.env 内网团队约定可入库
- *.pem
- # Python
- __pycache__/
- *.py[cod]
- .venv/
- venv/
- .pytest_cache/
- *.egg-info/
- # Node / web
- node_modules/
- dist/
- # 例外:海外机不装 node,前端构建产物入库直接托管
- !acquisition/web/app/dist/
- .next/
- .vite/
- # 媒体落盘 / 运行产物 —— 体积大,本地保留不入库
- /data
- /legacy_data
- /runtime
- # 分类树 dump + embedding —— 本地保留不入库,可由 scripts/dump_trees.py + embed_trees.py 重生
- scope_trees/
- # 杂项
- .DS_Store
- *.log
|