Skip to content

Commit

Permalink
Create CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Octet3290 authored Oct 9, 2023
1 parent 77cde74 commit f2bc8a9
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# 🌱 Contributing to Octet Learnings App


### Welcome to Octet Learnings App Public Repository. 👨🏻‍💻

<p>A month-long celebration from October 1st - 31st sponsored by Digital Ocean and GitHub to get people involved in Open Source. Create your very first pull request to any public repository on GitHub and contribute to the open source developer community.

https://hacktoberfest.digitalocean.com/</p>

---

### What can You contribute ⚠️

- There are functionality specific folders in the repository choose any you're comfortable with if not, make one.
- Inside the client -> components folder there will be multiple folders of their respective pages.
- Inside the client -> context folder there are the ways how the smart contracts are fetched and even shows you how to connect your metamask wallet.
- Inside the Smart contracts folder there is the solidity code where the smart contract is developed.
- Make sure your follow the below steps.

---

### Process are as follows :-

- Login using github @ [Hacktoberfest](https://hacktoberfest.digitalocean.com/)
- Create four valid pull requests (PRs) between 1st - 31st October

---

### How to Contribute to this repository

- Fork the repository (Click the Fork button in the top right of this page, click your Profile Image)
- Clone the forked repository to your local machine.

```markdown
https://github.com/Octet3290/OctetLearnings.git
```

- change the present working directory

```markdown
cd OctetLearnings
```

- Add/Create your project to the specific folder as described in what you can contribute section.
- Make a new branch

```markdown
git checkout -b branch-name
```

- Make change in the repository with the new branch.
- push the changes.

```markdown
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 whereever necessary.

<!-- END OF README END OF README END OF README END OF README END OF README END OF README END OF README -->

0 comments on commit f2bc8a9

Please sign in to comment.