Summary: - Created Node.js backend Docker image build guide - Updated deployment progress overview with backend status - Updated system status documentation Backend build achievements: - Fixed 200+ TypeScript compilation errors (200+ to 0) - Completed Prisma reverse sync (32 models from RDS) - Manually added 30+ Prisma relation fields - Successfully built Docker image (838MB) - Pushed image to ACR (v1.0 + latest tags) Documentation updates: - Added 10-Node.js后端-Docker镜像构建手册.md - Updated 00-部署进度总览.md with backend deployment status - Updated 00-系统当前状态与开发指南.md with latest progress - Fixed date format (2024 -> 2025) Next steps: - Deploy Node.js backend to SAE - Configure environment variables - Test end-to-end functionality Status: Backend Docker image ready for SAE deployment
51 lines
362 B
Plaintext
51 lines
362 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# 测试
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.log
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 文档
|
|
*.md
|
|
docs/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# 环境变量
|
|
.env
|
|
.env.local
|
|
|
|
# 临时文件
|
|
*.tmp
|
|
temp/
|
|
tmp/
|
|
uploads/
|
|
|
|
# 模型缓存 (避免打包Nougat模型)
|
|
.cache/
|
|
models/
|
|
*.pth
|
|
*.pt
|
|
*.onnx
|
|
|
|
|
|
|