24 lines
414 B
Markdown
24 lines
414 B
Markdown
# Backend
|
|
|
|
## 当前进度
|
|
|
|
- 已完成 FastAPI 基础工程初始化
|
|
- 已完成 `/health` 健康检查接口
|
|
- 已完成 `.env.example` 和 `requirements.txt`
|
|
- 已完成 SQLAlchemy 模型与 Alembic 骨架
|
|
- 已完成初始化数据方案摘要脚本
|
|
|
|
## 启动方式
|
|
|
|
```bash
|
|
uvicorn main:app --reload
|
|
```
|
|
|
|
## 初始化数据方案
|
|
|
|
可先查看初始化摘要:
|
|
|
|
```bash
|
|
python scripts/bootstrap_data.py
|
|
```
|