Skip to content

Latest commit

 

History

History
71 lines (51 loc) · 2.04 KB

CONTRIBUTING.md

File metadata and controls

71 lines (51 loc) · 2.04 KB

How to Contribute to this repository

Data is everything, be the first person to improve the world with your research findings.

Pre-requisite: You need Latest versions of Git, NodeJS, Yarn2

Steps to contribute

  1. Fork the repository
  2. Clone the forked repository to your local machine.
git clone `forked-repository-url` # replace `forked-repository-url` with yours.
  1. change the present working directory
cd developer-resources
  1. Install packages
yarn
  1. Run the project
yarn dev
  1. Make a new branch

    Always create meaningful name while creating branch. Good practice is to prefix it with resource. For example: ideas-app-building would be meaningful and we can know you are trying to add data to the ideas module.

git checkout -b branch-name
  1. Make change in the repository with the new branch.
Type Contribution Guide Page
Design Contribution PR Guide https://devfree-resources.netlify.app/designs
App-Ideas Contribution PR Guide https://devfree-resources.netlify.app/app-ideas
Hosting Contribution PR Guide https://devfree-resources.netlify.app/hosting
  1. Push the changes.
git add .
git commit -m "Your commit Message"
git push origin branch-name
  • Make a pull request.
  • Don't forget to 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.