A platform that enables HR Teams and Medical Teams to keep track of patients and their immediate contacts. To be used by organizations and factories trying to work through the pandemic.
-
Email Verification on creating a new account.
-
Streamlined Onboarding form for new patients.
-
Streamlined Daily Update form for patient tracking.
-
Detail view per patient.
-
Symptom trends view for doctors to track patient health.
-
Separate Doctor and HR comments per patient.
-
Automatic categorization of patient criticality based on symptoms.
-
Records primary contacts of every patient as well.
- Clone the repository.
- Set your virtual environment up.
- Rename
env-template.txt
to.env
and fill in the details. You only need to fill theDJANGO_SECRET_KEY
,LOGIN_REDIRECT_URL
andLOGIN_URL
to get started. - Activate your virtual environment and run
pip install -r requirements.txt
. - Make the migrations and run them using:
python manage.py makemigrations
and thenpython manage.py migrate
. - Run the tests using
python manage.py test
. - Run the development server using
python manage.py runserver
. - Navigate to
localhost:8000/docs
on your browser for the documentation.
-
Dockerize the application
-
Host it on a more production ready platform.