.gitignore 533 B

1234567891011121314151617181920212223242526272829
  1. # 密钥 —— pem 绝不入库;.env 内网团队约定可入库
  2. *.pem
  3. # Python
  4. __pycache__/
  5. *.py[cod]
  6. .venv/
  7. venv/
  8. .pytest_cache/
  9. *.egg-info/
  10. # Node / web
  11. node_modules/
  12. dist/
  13. # 例外:海外机不装 node,前端构建产物入库直接托管
  14. !acquisition/web/app/dist/
  15. .next/
  16. .vite/
  17. # 媒体落盘 / 运行产物 —— 体积大,本地保留不入库
  18. data/
  19. runtime/
  20. # 分类树 dump + embedding —— 本地保留不入库,可由 scripts/dump_trees.py + embed_trees.py 重生
  21. scope_trees/
  22. # 杂项
  23. .DS_Store
  24. *.log