- 新增 backend/Dockerfile + frontend/Dockerfile (多阶段构建) - 新增 docker-compose.yml (postgres + redis + backend + frontend) - 新增 .env.example 模板 (前后端) - 新增 export API: 任务数据导出 + 审计日志导出 (CSV + 流式响应) - 安全加固: CORS 从环境变量配置, 安全 headers 中间件 - 生产环境自动禁用 API 文档 (Swagger/Redoc) - 添加 ENVIRONMENT, CORS_ORIGINS 配置项 - 前端启用 Next.js standalone 输出模式 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
272 B
Plaintext
34 lines
272 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Dependencies (will be installed in Docker)
|
|
node_modules
|
|
|
|
# Build output
|
|
.next
|
|
out
|
|
dist
|
|
|
|
# Testing
|
|
coverage
|
|
.vitest
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Misc
|
|
*.log
|
|
*.tmp
|
|
README.md
|
|
Dockerfile
|
|
.dockerignore
|