- application-dev.yml 含数据库/Redis/COS 密钥,从 git 移除 - docker/.env 含 COS 密钥和公网 IP,从 git 移除 - 新增 .example 模板(占位符),方便新开发者配置 - .gitignore 添加规则阻止未来误提交
45 lines
705 B
Plaintext
45 lines
705 B
Plaintext
# Existing ignores (preserve)
|
|
target/
|
|
*.class
|
|
*.log
|
|
.idea/
|
|
*.iml
|
|
|
|
# Diagnostic documents - DO NOT COMMIT
|
|
数据库/aiot/执行指南-*.md
|
|
数据库/aiot/*诊断*.md
|
|
数据库/aiot/*分析*.md
|
|
数据库/aiot/*报告*.md
|
|
|
|
# Test files and temporary scripts
|
|
test_*.html
|
|
test_*.md
|
|
*_test.html
|
|
*_validation.md
|
|
|
|
# Build and runtime files
|
|
docker/volumes/
|
|
docker/wvp/config/
|
|
src/main/resources/static/
|
|
nul
|
|
binlog_*.txt
|
|
|
|
# Development tools
|
|
.claude/
|
|
.trae/
|
|
|
|
# Batch scripts (user-specific)
|
|
*.bat
|
|
|
|
# Python scripts (temporary)
|
|
generate_*.py
|
|
|
|
# Documentation (keep local, do not commit)
|
|
docs/
|
|
|
|
# 敏感配置文件(含密码/密钥,不入库)
|
|
src/main/resources/application-dev.yml
|
|
docker/.env
|
|
.env
|
|
.env.local
|