-
-
Notifications
You must be signed in to change notification settings - Fork 505
Fixes #59: Deployment error resolved for Corona Tracker app #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,23 +1,36 @@ | ||||||||||
| # COVID-19 Tracker | ||||||||||
|
|
||||||||||
| ### [Live Site](https://covid19statswebsite.netlify.com/) | ||||||||||
| ### [Live Site](https://gleaming-buttercream-1dc6e5.netlify.app) | ||||||||||
|
|
||||||||||
|  | ||||||||||
|
|
||||||||||
| ### [🌟 Become a top 1% Next.js 13 developer in only one course](https://jsmastery.pro/next13) | ||||||||||
| ### [🚀 Land your dream programming job in 6 months](https://jsmastery.pro/masterclass) | ||||||||||
| # 🦠 Covid-19 Tracker | ||||||||||
|
|
||||||||||
| ## Stay up to date with new projects | ||||||||||
| New major projects coming soon, subscribe to the mailing list to stay up to date https://resource.jsmasterypro.com/newsletter | ||||||||||
| A React-based web app that shows live Covid-19 cases, recoveries, and deaths using public APIs. | ||||||||||
|
|
||||||||||
| ## Introduction | ||||||||||
| This is a code repository for the corresponding video tutorial. | ||||||||||
| ## 🚀 Live Demo | ||||||||||
| 👉 [Visit Now](https://your-new-netlify-url.netlify.app) | ||||||||||
|
Comment on lines
+11
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Update placeholder URL in Live Demo section. The Live Demo section contains a placeholder URL that needs to be updated with the actual deployment URL. Apply this diff to use the actual deployment URL: -👉 [Visit Now](https://your-new-netlify-url.netlify.app)
+👉 [Visit Now](https://gleaming-buttercream-1dc6e5.netlify.app)📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||
|
|
||||||||||
| In this video, we will create a full COVID-19 Tracker. We're going to use React, Charts.JS and Material UI. | ||||||||||
| ## 🛠️ Tech Stack | ||||||||||
| - React.js | ||||||||||
| - Chart.js or Recharts | ||||||||||
| - Axios / Fetch | ||||||||||
| - CSS / Bootstrap / Tailwind | ||||||||||
|
|
||||||||||
| By the end of this video, you will have a strong understanding of React's workflow and the use of hooks. | ||||||||||
| ## 🐞 Fixed Issues | ||||||||||
| - API not loading for India ✅ | ||||||||||
| - Deaths count not updating ✅ | ||||||||||
| - Live time display issue ✅ | ||||||||||
|
|
||||||||||
| API used: https://covid19.mathdro.id/api | ||||||||||
| ## 📦 Installation | ||||||||||
| ```bash | ||||||||||
| git clone https://github.com/your-username/covid-tracker.git | ||||||||||
| cd covid-tracker | ||||||||||
|
Comment on lines
+26
to
+28
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Update git clone URL with actual repository. The installation instructions reference a placeholder repository URL that should be updated with the actual project repository. Replace the placeholder with the actual repository URL from the PR context. 🤖 Prompt for AI Agents |
||||||||||
| npm install | ||||||||||
| npm start | ||||||||||
|
|
||||||||||
|
|
||||||||||
| API used: https://disease.sh/v3/covid-19/countries | ||||||||||
|
|
||||||||||
| Setup: | ||||||||||
| - run ```npm i && npm start``` | ||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix heading level violation.
The heading level jumps from h1 to h3, which violates markdown best practices and accessibility guidelines.
Apply this diff to fix the heading hierarchy:
📝 Committable suggestion
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)
3-3: Heading levels should only increment by one level at a time
Expected: h2; Actual: h3
(MD001, heading-increment)
🤖 Prompt for AI Agents