Files
genepioneer/.gitignore
2025-12-26 14:38:17 +08:00

81 lines
1.5 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.
# ========================= 核心构建/编译文件 =========================
# Maven编译输出目录核心必须排除
target/
# Gradle编译输出如果用Gradle需保留Maven项目可忽略
build/
gradle/
gradlew
gradlew.bat
.gradle/
# ========================= Maven相关重点 =========================
# Maven包装器你的项目里有必须排除
.mvn/
mvnw
mvnw.cmd
# ========================= IDE配置文件 =========================
# IntelliJ IDEA最常用
.idea/
*.iml
*.ipr
*.iws
out/
# Eclipse
.classpath
.project
.settings/
bin/
# VS Code
.vscode/
*.code-workspace
# ========================= 敏感/环境配置文件 =========================
# 核心配置含数据库密码、JWT密钥等必须排除
application.properties
application.yml
application-dev.yml
application-prod.yml
# 自定义配置文件
*.properties
*.yml
# 环境变量文件
.env
.env.local
# ========================= 系统/缓存文件 =========================
# Windows系统
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# Mac系统
.DS_Store
.AppleDouble
.LSOverride
# 通用缓存/日志
*.log
*.tmp
*.bak
*.swp
*.swo
.cache/
logs/
# 临时文件
tmp/
temp/
# ========================= 其他冗余文件 =========================
# 压缩包
*.zip
*.tar.gz
*.rar
# IDEA运行配置
runConfigurations/
# 测试报告
surefire-reports/
failsafe-reports/
# 忽略所有媒体文件夹内容不上传到Git
/media/img/*
/media/video/*