.gitignore 524 B

123456789101112131415161718192021222324252627282930313233
  1. # 密钥/环境 —— 绝不入库
  2. .env
  3. .env.*
  4. *.pem
  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. .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
  25. # 本地 preview 用的提示词真源软链(云端由 FastAPI 挂载)
  26. web/prompt-skill
  27. web/prompt-read