Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 1.18 KB

CONTRIBUTING.md

File metadata and controls

54 lines (38 loc) · 1.18 KB

How to Contribute to this repository

  1. Fork the repository (Click the Fork button in the top right of this page, click your Profile Image)
  2. Clone the forked repository to your local machine.
    git clone https://github.com/<your-username>/HazzWeather.git
  1. change the present working directory
cd HazzWeather
  1. Install npm packages
npm install
  1. Create Your API Key from OpenWeather

  2. Create .env file in HazzWeather folder and do as shown in image image

  3. Run the React Project

npm start
  1. Make a new branch
git checkout -b branch-name
  1. Make change in the repository with the new branch.
  2. Push the changes.
git add .
git commit -m "Your commit Message"
git push origin branch-name
  • Make a pull request.
  • Star the repository.

NOTE

  • Make Sure you commit your changes in a new branch.
  • Make Sure you Give proper name to your files describing the addition.
  • Also Make Sure you comment your code wherever necessary.