Skip to content

sanketsangi/Covid-19Tracker

Repository files navigation

Website Homepage Website Homepage Website Homepage

Covid-19 Tracker Application using disease.sh - Open Disease Data API

Move with Safety
Move with Safety
Logo made using Figma

🧑🏻‍💻 Story

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.

📱 Snapshot

Stack

Files-Structure

$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