80 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -----------------------------
# Java & Spring Boot 项目通用
# -----------------------------
# 编译输出
/out/
/target/
/build/
# 日志
*.log
# 临时文件
*.tmp
*.bak
*.swp
# 操作系统垃圾文件
.DS_Store
Thumbs.db
# -----------------------------
# Maven
# -----------------------------
/.mvn/
/**/target/
!src/**/target/keepme.txt # 可选:防止误删有用文件夹
# Maven Wrapper
mvnw
mvnw.cmd
.mvn/
# -----------------------------
# Gradle如果用的是 Gradle
# -----------------------------
.gradle/
build/
!gradle/wrapper/gradle-wrapper.jar
# Gradle Wrapper
gradlew
gradlew.bat
# -----------------------------
# IntelliJ IDEA
# -----------------------------
.idea/
*.iml
*.iws
*.ipr
# -----------------------------
# VSCode
# -----------------------------
.vscode/
# -----------------------------
# 数据库 & 配置
# -----------------------------
# 忽略本地配置文件(避免提交数据库密码等)
application-local.yaml
application-dev.yaml
application.properties
application.yaml
application-prod.yaml
# -----------------------------
# 图片 / 文件上传目录(如有)
# -----------------------------
/device_image/
/uploads/
/images/
# -----------------------------
# Git 忽略规则文件自身
# -----------------------------
!.gitignore