.gitignore 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # See https://docs.github.com/get-started/getting-started-with-git/ignoring-files
  2. # 编译输出
  3. /dist/
  4. /tmp/
  5. /out-tsc/
  6. /bazel-out/
  7. # Node
  8. /node_modules/
  9. npm-debug.log
  10. yarn-error.log
  11. .env
  12. .env.*
  13. !.env.example
  14. # IDE 和编辑器
  15. .idea/
  16. .project
  17. .classpath
  18. .c9/
  19. *.launch
  20. .settings/
  21. *.sublime-workspace
  22. # Visual Studio Code
  23. .vscode/*
  24. !.vscode/settings.json
  25. !.vscode/tasks.json
  26. !.vscode/launch.json
  27. !.vscode/extensions.json
  28. !.vscode/mcp.json
  29. .history/*
  30. # 缓存、测试结果和临时产物
  31. /.angular/cache/
  32. .sass-cache/
  33. /connect.lock
  34. /coverage/
  35. /libpeerconnection.log
  36. testem.log
  37. /typings/
  38. __screenshots__/
  39. /.gstack/
  40. /memory/
  41. /session-checkpoints/
  42. /test-results/
  43. /playwright-report/
  44. /blob-report/
  45. # 系统文件
  46. .DS_Store
  47. Thumbs.db
  48. # Windsurf 本地配置和工作流
  49. /.windsurf/
  50. # 后端运行时数据(视频、任务、历史等本地产物)
  51. /data/
  52. !/data/.gitkeep
  53. # 项目内部方案、调研、参考资料和 AI 助手协作文档默认仅本地保留。
  54. /docs/*
  55. /项目参考/
  56. # 本地测试、调试和个人资料
  57. /testAudioLocal.js
  58. /deploy.ps1
  59. /*.xlsx
  60. /*.xls
  61. /脚本示例-*.md
  62. /src/video/manifest.json
  63. # 日志
  64. *.log
  65. # 云函数自动构建产物和本地实施笔记
  66. /cloud-functions/deployable/
  67. /cloud-functions/session-contract-notes.md
  68. # 本地子项目
  69. /openclaw-voc-skill/
  70. /apig-pay/
  71. /video-workflow-skills/
  72. /douyin-speaking-daily/