Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 592 Bytes

File metadata and controls

30 lines (21 loc) · 592 Bytes

测试构建规则

后端测试

python -m pytest backend/tests -v

前端测试

cd frontend
npm test

前端生产构建

cd frontend
npm run build

构建产物位于 frontend/dist/。后端继续作为纯 API 服务运行,前端构建产物应由独立 Web 服务器或部署平台托管。

部署检查

  • 前端构建必须通过。
  • 后端相关测试应通过。
  • 涉及部署方式变更时,PR 描述必须说明影响范围和回滚方式。
  • 不提交 frontend/dist/、数据库、运行缓存和本地临时脚本。