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
- Fork the repository
- Clone the forked repository to your local machine.
git clone `forked-repository-url` # replace `forked-repository-url` with yours.
- change the present working directory
cd developer-resources
- Install packages
yarn
- Run the project
yarn dev
- 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 adddata
to the ideas module.
git checkout -b branch-name
- 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 |
- 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.
- 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.