61 lines
598 B
Plaintext
61 lines
598 B
Plaintext
# Git 相关
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE 相关
|
|
.idea
|
|
.vscode
|
|
*.iml
|
|
.project
|
|
.classpath
|
|
.settings
|
|
|
|
# 构建输出
|
|
target/
|
|
*/target/
|
|
build/
|
|
*/build/
|
|
|
|
# 日志文件
|
|
logs/
|
|
*.log
|
|
|
|
# 临时文件
|
|
*.tmp
|
|
*.temp
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node.js 相关(前端)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# 文档和说明
|
|
README.md
|
|
CHANGELOG.md
|
|
VERSION.md
|
|
doc/
|
|
docs/
|
|
|
|
# 测试相关
|
|
.coverage
|
|
coverage/
|
|
|
|
# 其他
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Docker 相关
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# 部署相关
|
|
ry.sh
|
|
deploy/
|
|
scripts/ |