1
0

.gitignore 812 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # macOS
  2. .DS_Store
  3. **/.DS_Store
  4. # Video render temp (render-video.js 产物)
  5. .video-tmp-*/
  6. **/.video-tmp-*/
  7. # Personal asset index(个人真实数据,只保留 .example.json 模板)
  8. assets/personal-asset-index.json
  9. # 环境变量(API key 等敏感信息,只保留 .env.example 模板)
  10. .env
  11. .env.local
  12. # Voiceover 工作目录(TTS mp3、timeline.json 临时产物,可重新生成)
  13. **/_narration/
  14. **/_narration_*/
  15. # Node / editor / OS
  16. node_modules/
  17. *.swp
  18. .idea/
  19. .vscode/
  20. Thumbs.db
  21. # Verification artifacts(截图、临时测试脚本)
  22. demos/_frames_*.png
  23. demos/_verify.js
  24. demos/_verify.mjs
  25. # 开发/测试中间产物(skill 内部研发用,不分发给用户)
  26. _style-research/
  27. **/design-demos/
  28. # Demo 大视频(用 GitHub Releases 分发,不进仓库膨胀)
  29. demos/**/*.mp4