In critical situations such as sudden illness or natural disasters, accessing a patient's medical history swiftly can be a matter of life and death. The MediScan project aims to revolutionize medical emergency response by providing instant access to a patient's medical history through facial recognition technology. By simply scanning a patient's face, doctors can access vital medical information, allergies, and previous treatments, enabling them to make informed decisions rapidly and administer appropriate treatment promptly.
-
Navigate to the MediScan directory:
cd MediScan
-
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
- For Windows:
venv\Scripts\Activate
- For Linux:
source venv/bin/activate
- For Windows:
-
Install project dependencies from the
requirements.txt
file:pip install -r requirements.txt
-
Change to the
frontend
directory:cd frontend
-
Run the backend server:
python manage.py runserver
-
Open another terminal and change to the
MediScan
directory:cd MediScan
-
Run the frontend:
npm run build
-
Open any web browser and go to:
localhost:8000
Now, your MediScan project should be up and running!