- 添加 Dockerfile 与多套 docker-compose 配置(开发/生产环境) - 集成 Laravel Octane (Swoole) 提升性能 - 新增健康检查、监控脚本及部署文档 - 新增 Docker 镜像离线导入包(MySQL/Redis/Meilisearch) - 优化文档转换、预览服务及队列任务 - 添加 CreateAdminUser 命令与路由健康检查接口 - 新增 Swoole 队列兼容性测试套件 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
56 lines
569 B
Plaintext
56 lines
569 B
Plaintext
# Docker构建忽略文件
|
|
|
|
# Git相关
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# 开发工具
|
|
.editorconfig
|
|
.env.example
|
|
.kiro/
|
|
|
|
# 文档
|
|
README.md
|
|
CHANGELOG.md
|
|
CONTRIBUTING.md
|
|
docs/
|
|
|
|
# 测试
|
|
tests/
|
|
phpunit.xml
|
|
.phpunit.result.cache
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# PHP
|
|
vendor/
|
|
composer.phar
|
|
|
|
# Laravel
|
|
storage/logs/*
|
|
storage/framework/cache/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
bootstrap/cache/*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
docker-compose*.yml
|
|
Dockerfile*
|
|
|
|
# 其他
|
|
*.log
|
|
*.tmp |