.gitignore 305 B

123456789101112131415161718192021222324
  1. # Node
  2. node_modules/
  3. npm-debug.log
  4. yarn-error.log
  5. # 环境变量
  6. .env
  7. .env.*
  8. !.env.example
  9. # 运行时数据(视频/任务/历史等,每个环境不一样)
  10. /data/videos/
  11. /data/composite/
  12. /data/remixes/
  13. /data/remix-assets/
  14. /data/*.json
  15. !/data/.gitkeep
  16. # 日志
  17. *.log
  18. # 系统
  19. .DS_Store
  20. Thumbs.db