This is my Non-Exam-Assessment for OCR A-Level Computer Science.
This project is a prototype platform that connects patients, doctors, and pharmaceutical companies in one platform. It is coded in React + TypeScript + Vite for the client side and Python (Flask) for the back-end.
To get started with the project, follow these steps:
- Clone the repository:
git clone https://github.com/Binaryul/MediLink.git
- Navigate to the project directory:
cd MediLink
- Install the dependencies for the client:
cd client npm install
- Install the dependencies for the server:
cd ../server pip install -r requirements.txt
To run the project locally, follow these steps:
- Start the client:
cd client npm run dev
- Start the server:
cd ../server python main.py