In the year 2020- 2021, we'd faced the pandemic of Covid-19, so came up with an idea to create the covid-19 tracker web application which will counts the number of covid-19 cases in the world. It is an web app based on Spring Boot Framework, using CSSEGISandData/COVID-19 API, which provides daily corona virus case reports globally.
Are we missing any of your favorite features, which you think you can add to it❓ We invite you to contribute to this project and improve it furtherTo start contributing, follow the below guidelines:
🌟 Star the project to bookmark and appreciate the work.
1. Fork
the repository: Creates a replica of repository to your local environment.
2. Local Machine setup:-
git config --global user.name "GITHUB_USER_NAME"
Enter your github user name instead of GITHUB_USER_NAME.
git config --global user.email "email@gmail.com"
Enter your email linked to github account instead of email@gmail.com.
git config -l
3. Clone the repository -
Downloads all repo files to your machine, using:-
git clone https://github.com/YOUR-USERNAME/covid19-tracker
- Enter user_name
- Press ok
- Enter access token instead of password
- Press ok
4. Set working directory to the root directory of the project.
cd covid19-tracker/
5. Cheers! 🎉 Now the repository has been setup in your local machine. Open your editor and start coding, & for visual studio code, run command in terminal:-
code .
6. Add a reference(remote) to the original repository.
git remote add upstream https://github.com/amino19/covid19-tracker.git
7. Perform your desired changes to the code base.
8. Track your changes ✅
git add .
9. Commit your changes.
git commit -m "Relevant message"
10. Check for your changes.
git status
11. Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
12. To create a pull request, click on compare and pull requests
. Please ensure you compare your feature branch to the desired branch of the repo you are suppose to make a PR to.
13. Add appropriate title and description to your pull request explaining your changes and efforts done.
14. Click on Create Pull Request
.
15. Voila ❗️ You have made a PR to the website 💥 . Sit back patiently and relax while the project maintainers review your PR. Please understand, at timesthe time taken to review a PR can vary from a few hours to a few days.
NOTE:
- If there is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details.
git pull
- If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=/ main
- Check the remotes for this repository.
git remote -v
We're thanking all the amazing cotributors for their time & efforts.