A secure healthcare data management platform utilizing blockchain technology for data storage and AI for treatment recommendations.
healthcare-platform/
├── backend/
│ ├── app/
│ │ ├── api/
│ │ ├── blockchain/
│ │ ├── core/
│ │ ├── db/
│ │ └── models/
│ └── tests/
├── frontend/
│ ├── public/
│ └── src/
├── blockchain/
│ └── contracts/
└── docker/
pip install -r requirements.txt
cp .env.example .env
uvicorn app.main:app --reload
Create a .env
file with the following variables:
MONGODB_URL=your_mongodb_url
JWT_SECRET=your_jwt_secret
BLOCKCHAIN_NODE_URL=your_blockchain_node_url
Once the server is running, visit:
http://localhost:8000/docs
http://localhost:8000/redoc
This platform implements several security measures:
MIT