.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
  2. # Compiled output
  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. # IDEs and editors
  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. # Miscellaneous
  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. # System files
  43. .DS_Store
  44. Thumbs.db
  45. # Windsurf IDE (本地配置/工作流,不上传)
  46. .windsurf/
  47. # 后端运行时数据(视频、任务、历史等本地产物)
  48. /data/
  49. !/data/.gitkeep
  50. # 项目内部文档/参考资料(本地保留,不入库)
  51. /docs/
  52. # 本地测试/调试脚本
  53. testAudioLocal.js
  54. deploy.ps1
  55. # 日志
  56. *.log
  57. # 本地子项目(不入库)
  58. /openclaw-voc-skill/
  59. /apig-pay/
  60. /video-workflow-skills/
  61. /douyin-speaking-daily/