Skip to content

Files

Latest commit

 

History

History
91 lines (60 loc) · 1.48 KB

contributing.md

File metadata and controls

91 lines (60 loc) · 1.48 KB

😎 Contribute your Code to ProjectsHut

Make sure you've basic knowledge of these

🧐 Follow these steps to Contribute

Open in Gitpod

  1. Fork this repository

 Fork this repository

  1. Click on Go to file

Go to file

  1. Add following code to end of src/DB/projects.json
{
  "gh-username": "YOUR-GITHUB-USERNAME",
  "link": "LINK-TO-GITHUB-OR-DEMO",
  "title": "PROJECT-TITLE",
  "description": "PROJECT-DESCRIPTION",
  "tech": ["some tech 1", "some tech 2", "etc"]
}

If you want to run it locally then follow these

  1. Clone it to your computer
 git clone https://github.com/[your-username]/ProjectsHut.git
  1. Navigate to the project folder
cd ProjectsHut
  1. install dependencies
yarn
  1. run in local
yarn run dev
  1. Create a new branch using your GitHub Username
git checkout -b [name_of_your_new_branch]
  1. Add your changes.
git add .
  1. Add your commits
git commit -m "Your Changes"
  1. Set upstream command
git remote add upstream https://github.com/priyankarpal/ProjectsHut.git
  1. Push your commits
git push -u origin [Your-branch-name]
  1. Create a PR

  2. Wait for merge