Files
schoolNews/.dockerignore
2025-11-24 14:45:17 +08:00

69 lines
964 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.

# Git
.git
.gitignore
.gitattributes
# IDE
.idea
.vscode
*.iml
*.swp
*.swo
*~
# Docker
docker/
Dockerfile*
docker-compose*.yml
.dockerignore
# 文档
*.md
README*
doc/
docs/
# 日志
logs/
*.log
# 临时文件
tmp/
temp/
.tmp/
# 后端相关
schoolNewsServ/target/
schoolNewsServ/.mvn/
schoolNewsServ/mvnw*
schoolNewsServ/**/*.class
schoolNewsServ/**/*.jar
!schoolNewsServ/admin/target/admin-1.0.0.jar
!schoolNewsServ/docker/start.sh
# 前端相关
schoolNewsWeb/node_modules/
# schoolNewsWeb/dist/ # 构建镜像时需要dist不能忽略
schoolNewsWeb/.env.local
schoolNewsWeb/.env.*.local
schoolNewsWeb/npm-debug.log*
schoolNewsWeb/yarn-debug.log*
schoolNewsWeb/yarn-error.log*
!schoolNewsWeb/docker/start.sh
# 爬虫相关
schoolNewsCrawler/__pycache__/
schoolNewsCrawler/**/*.pyc
schoolNewsCrawler/.pytest_cache/
schoolNewsCrawler/.venv/
schoolNewsCrawler/venv/
# 操作系统
.DS_Store
Thumbs.db
# 数据和上传文件
uploads/
*.sql
*.dump