Files
server/.dockerignore
2025-11-01 15:24:04 +08:00

81 lines
947 B
Plaintext
Raw Permalink 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目录用于多段构建
target/classes/
target/test-classes/
target/maven-archiver/
target/maven-status/
# settings.xml需要复制到构建容器中所以不忽略
# settings.xml
# IDE文件
.idea/
.vscode/
*.iml
*.ipr
*.iws
# 日志文件
logs/
*.log
# 临时文件
temp/
*.tmp
*.temp
# 系统文件
.DS_Store
Thumbs.db
# Git文件
.git/
.gitignore
# Docker文件
Dockerfile*
docker-compose*.yml
.dockerignore
# 文档文件
README.md
*.md
docs/
# 测试文件
src/test/
# 配置文件(敏感信息)
application.properties.backup
*.properties.backup
# 节点模块
node_modules/
npm-debug.log*
# Python相关
__pycache__/
*.py[cod]
*$py.class
# 备份文件
*.bak
*.backup
*.swp
*.swo
# 环境配置文件
.env
.env.local
.env.*.local
# 本地数据目录
data/
upload/
temp/
unzip/
images/
reports/
# Maven wrapper
.mvn/wrapper/maven-wrapper.jar
.mvn/wrapper/maven-wrapper.properties