Rehelth System 是一个全面的健康管理平台,旨在提供个性化的医疗服务和健康追踪。
- 后端: FastAPI (Python)
- 前端: React + TypeScript + Ant Design
- 数据库: SQLite (异步 SQLAlchemy)
rehelthsytem/ ├── backend/ # 后端服务 │ ├── app/ # 应用代码 │ ├── tests/ # 测试目录 │ └── requirements.txt ├── frontend/ # 前端服务 │ ├── src/ # 源代码 │ └── package.json └── run.py # 项目启动脚本
- Python 3.11+
- Node.js 16+
- npm 8+
- 克隆项目
git clone https://github.com/yourusername/rehelthsytem.git
cd rehelthsytem- 启动项目
# 直接运行启动脚本
python run.py
# 或者手动启动
# 后端
cd backend
python -m venv venv
source venv/bin/activate # Windows使用 venv\Scripts\activate
pip install -r requirements.txt
uvicorn main:app --reload
# 前端
cd ../frontend
npm install
npm run dev- 多角色用户系统(患者、医生、健康助理、管理员)
- 个性化健康管理
- 在线问诊
- 康复计划追踪
- 健康数据可视化
- Fork 项目
- 创建 feature 分支 (
git checkout -b feature/AmazingFeature) - 提交代码 (
git commit -m 'Add some AmazingFeature') - 推送到分支 (
git push origin feature/AmazingFeature) - 创建 Pull Request
MIT License
项目负责人:[Your Name] 项目链接:[https://github.com/yourusername/rehelthsytem]