| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- # See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
- # Compiled output
- /dist
- /tmp
- /out-tsc
- /bazel-out
- # Node
- /node_modules
- npm-debug.log
- yarn-error.log
- .env
- .env.*
- !.env.example
- # IDEs and editors
- .idea/
- .project
- .classpath
- .c9/
- *.launch
- .settings/
- *.sublime-workspace
- # Visual Studio Code
- .vscode/*
- !.vscode/settings.json
- !.vscode/tasks.json
- !.vscode/launch.json
- !.vscode/extensions.json
- !.vscode/mcp.json
- .history/*
- # Miscellaneous
- /.angular/cache
- .sass-cache/
- /connect.lock
- /coverage
- /libpeerconnection.log
- testem.log
- /typings
- __screenshots__/
- # System files
- .DS_Store
- Thumbs.db
- # Windsurf IDE (本地配置/工作流,不上传)
- .windsurf/
- # 后端运行时数据(视频、任务、历史等本地产物)
- /data/
- !/data/.gitkeep
- # 项目内部文档/参考资料(本地保留,不入库)
- /docs/
- # 本地测试/调试脚本
- testAudioLocal.js
- deploy.ps1
- # 日志
- *.log
- # 本地子项目(不入库)
- /openclaw-voc-skill/
- /apig-pay/
- /video-workflow-skills/
- /douyin-speaking-daily/
|