- 从服务器拉取完整代码 - 按框架规范整理项目结构 - 配置 Drone CI 测试环境部署 - 包含后端(FastAPI)、前端(Vue3)、管理端 技术栈: Vue3 + TypeScript + FastAPI + MySQL
21 lines
319 B
Plaintext
21 lines
319 B
Plaintext
# Include base requirements
|
|
-r base.txt
|
|
|
|
# Testing
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-cov==4.1.0
|
|
httpx==0.25.2
|
|
aiosqlite==0.19.0
|
|
|
|
# Code quality
|
|
black==23.11.0
|
|
isort==5.12.0
|
|
flake8==6.1.0
|
|
mypy==1.7.1
|
|
types-python-dateutil==2.8.19.14
|
|
types-redis==4.6.0.11
|
|
|
|
# Development tools
|
|
ipython==8.18.1
|
|
watchfiles==0.21.0 |