This app is a mobile app that uses AI for healthcare predicting heart failure and brain strokes using data entered from the user and extracted from their lab test images
Follow the steps below to set up the project on your local machine.
Ensure you have the following installed:
Clone the repository to your local machine using the following command:
git clone <repository-url>
Navigate into the project folder and create a new branch with your name. This will be your personal branch for pushing changes.
cd project-folder
git checkout -b your-name
Replace your-name with your actual name (or a specific identifier as per your organization’s convention).
Install all Python dependencies listed in requirements.txt.
pip install -r requirements.txt
Navigate to the front-end folder (or project root if using a monorepo) and install Node.js dependencies:
npm install
Ensure you have Flutter installed and configured on your system. Then, run the following command to fetch the necessary packages:
flutter pub get
Create a .env file in the backend folder and add the following variables:
OPENAI_API_KEY=<your_openai_api_key>
DATABASE_HOST=<your_database_host>
DATABASE_PORT=<your_database_port>
DATABASE_USERNAME=<your_database_username>
DATABASE_PASSWORD=<your_database_password>
DATABASE_NAME=<your_database_name>
Replace the placeholders (<...>) with the actual values for your environment.