Welcome to the Health Universe community! Health Universe is an open-source cloud deployment platform and community for machine learning (ML) and AI from science to medicine.
This template provides a starter FastAPI application deployable to Health Universe.
In the root directory, open your console and run:
pip install -r requirements.txt
Then, run the following command to start the application:
uvicorn src.main:app --reload
Open up http://127.0.0.1:8000/docs in your browser to view the Swagger UI.
This repository is organized into a modular structure to enhance maintainability and scalability.
{your_folder_name_here}/
├── src/
├── api_diagnostics/
│ ├── router.py
│ ├── schemas.py
│ └── __init__.py
├── chads_vasc_score/
│ ├── router.py
│ ├── schemas.py
│ ├── utils.py
│ └── __init__.py
├── __init__.py
├── config.py
└── main.py