FastAPI 用户管理系统 技术栈 框架: FastAPI 数据库: SQLite 安装依赖 pip install -r requirements.txt 启动服务 python run.py 或者 uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload API 文档 启动服务后,可以通过以下地址访问API文档: Swagger UI: http://localhost:8000/docs ReDoc: http://localhost:8000/redoc API 接口 详见 CLAUDE.md 文件中的接口说明。