Files
chuanggao-website/.gitignore
王文昊 ff594cd915 build,config: 调整生产环境配置并新增相关配置
1. 更新生产环境MinIO公网访问地址
2. 新增全局.gitignore忽略规则
3. 添加Spring MVC字符编码与消息转换器配置
4. 修复AppFooter.vue末尾多余空行
2026-05-13 15:43:30 +08:00

107 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.

# ====================
# 构建输出
# ====================
client/dist/
server/target/
# ====================
# 依赖
# ====================
client/node_modules/
client/.pnpm-store/
server/.mvn/
server/mvnw
server/mvnw.cmd
# ====================
# 编辑器
# ====================
.idea/
*.iws
*.iml
*.ipr
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
client/.vscode/*
!client/.vscode/extensions.json
# ====================
# 环境变量
# ====================
client/.env.local
client/.env.*.local
server/src/main/resources/application-local.yml
server/src/main/resources/application-dev.yml
server/src/main/resources/application-prod.yml
# ====================
# 日志
# ====================
server/*.log
server/logs/
# ====================
# 测试覆盖
# ====================
client/coverage/
# ====================
# MinIO 本地存储
# ====================
minio-data/
minio-storage/
# ====================
# Docker
# ====================
.docker/
docker-compose.override.yml
# ====================
# 设计文件(仅开发参考)
# ====================
design/
# ====================
# MinIO 本地存储如果使用本地MinIO
# ====================
minio-data/
minio-storage/
# ====================
# Docker
# ====================
.docker/
docker-compose.override.yml
# ====================
# 通用
# ====================
# 操作系统文件
.DS_Store
Thumbs.db
# 临时文件
*.tmp
*.temp
*.swp
*.swo
*~
# 备份文件
*.bak
*.backup
# 压缩包
*.zip
*.tar.gz
*.rar
# 数据库文件
*.db
*.sqlite
*.sqlite3