worklog/.gitignore
zhangjf ae33bd4d6a feat: 初始化工作日志服务平台项目
- 项目文档:PRD、SRS、架构设计文档、前后端详细设计文档、架构设计规范
- 数据库脚本:用户创建和数据库初始化脚本
- 后端框架:Spring Boot 3.2 + MyBatis-Plus 3.5 基础架构
- 公共组件:统一返回结果、分页封装、全局异常处理
- 基础功能:链路追踪、API日志、健康检查接口
- 配置文件:application.yml.example 配置模板
- 开发规范:遵循架构设计规范,data目录存放MyBatis-Plus文件
2026-02-24 14:47:26 +08:00

90 lines
1.4 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.

# ====================================================
# 工作日志服务平台 - Git 忽略配置
# ====================================================
# ==================== IDE ====================
# IntelliJ IDEA
.idea/
*.iml
*.iws
*.ipr
out/
# Eclipse
.classpath
.project
.settings/
bin/
# VSCode
.vscode/
# ==================== 构建产物 ====================
target/
build/
dist/
*.class
*.jar
*.war
*.ear
# ==================== 日志文件 ====================
logs/
*.log
log/
# ==================== 临时文件 ====================
*.tmp
*.bak
*.swp
*~.nib
*.cache
# ==================== 配置文件(敏感信息)====================
# 配置文件包含敏感信息,不提交到仓库
application.yml
application-dev.yml
application-test.yml
application-prod.yml
bootstrap.yml
# 数据库备份
*.sql.backup
db_backup/
# ==================== 上传文件 ====================
uploads/
files/
# ==================== 系统文件 ====================
.DS_Store
Thumbs.db
desktop.ini
# ==================== Node.js前端====================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock
# ==================== Maven ====================
.mvn/
mvnw
mvnw.cmd
# ==================== Gradle ====================
.gradle/
gradle/
gradlew
gradlew.bat
# ==================== 其他 ====================
*.pid
*.seed
*.pid.lock
.env
.env.local
.env.*.local