.gitignore 591 B

123456789101112131415161718192021222324252627282930313233
  1. # 密钥 —— 真实本地配置不入库;提交 .env.example 作为模板
  2. *.pem
  3. .env
  4. !.env.example
  5. # Python
  6. __pycache__/
  7. *.py[cod]
  8. .venv/
  9. venv/
  10. .pytest_cache/
  11. *.egg-info/
  12. # Node / web
  13. node_modules/
  14. dist/
  15. # 例外:海外机不装 node,前端构建产物入库直接托管
  16. !app/frontend/dist/
  17. !app/frontend/dist/**
  18. .next/
  19. .vite/
  20. # 媒体落盘 / 运行产物 —— 体积大,本地保留不入库
  21. /data
  22. /legacy_data
  23. /runtime
  24. # 分类树 dump + embedding —— 本地保留不入库,可由 scripts/dump_trees.py + embed_trees.py 重生
  25. scope_trees/
  26. # 杂项
  27. .DS_Store
  28. *.log