Logo made using Figma
The goal of this project is to create a web application that will allow users to track the number of cases, recoveries, and deaths of a specific disease. The application will allow users to search country by name, and then view the number of cases, recoveries, and deaths for that country.
$PROJECT_ROOT
├── LICENSE
├── Pipfile.lock
├── Procfile
├── README.md
├── admin.py
├── apps.py
├── assets
│ └── snapshot.png
├── backend
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── covid
│ ├── admin.py
│ ├── apps.py
│ └── migrations
│ └── 0001_initial.py
├── manage.py
├── migrations
│ └── 0001_initial.py
├── models.py
├── requirements.txt
├── static
│ ├── css
│ │ ├── mobile.css
│ │ ├── new-style.css
│ │ └── style.css
│ └── js
│ ├── charts.js
│ ├── map-style.js
│ └── script.js
├── templates
│ └── index.html
├── tests.py
├── urls.py
└── views.py