This project is designed to allow users to upload medical files and recieve summaries of the data from our backend.
In order to start the frontend, you'll need to do the following after cloning the repository:
- CD into the
frontend
directory - Install the dependencies by running
npm install
- Start the frontend by running
npm run dev
In order to start the backend, you'll need to do the following after cloning the repository:
- CD into the
backend
directory - Create a virtual environment:
python -m venv venv
- Activate the virtual environment:
source venv/bin/activate
(On Windows usevenv\Scripts\activate
) - Install the dependencies:
pip install -r requirements.txt
- Start the backend:
uvicorn main:app --reload
Congrats! You're all set to start using the application.