# 版本控制
.git
.gitignore

# 敏感文件 (防止意外打入镜像)
.env
.env.*
!.env.example
*.pem
id_rsa*
authorized_keys

# 构建产物
/target/
node_modules/
/dist/
/build/

# 编辑器与系统
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbnails.db

# 日志与临时
*.log
tmp/
temp/
