Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Welcome To Quest Project Contribution Guide! 🥳

## Getting started and Making A Pull Request

**Fork The Repository by clicking the fork button**

**Clone the repository:**
``` bash
git clone https://github.com/Rajeshkeshoju/quest-jntuh.git
```

**Navigate into the repository :**
``` bash
cd quest-jntuh
```

**Create a new branch:**
```bash
git branch <branch_name>
git checkout <branch_name>
```

**Make the necessary changes**

**Add changes made to the staging area:**
```bash
git add <directory/file>
```

**Commit Changes**
```bash
git commit -m"<message>"
```
**Push Changes**
```bash
git push origin <branch_name>
```

**Create a Pull Request**

## Discussions

- Have a question? Want to discuss a feature? [Start a discussion](https://github.com/Rajeshkeshoju/quest-jntuh/discussions)

We welcome any discussions and questions. We want to make sure that Reflex is the best it can be, and we can't do that without your help.

## Issues

* ### Create a new issue

If you spot a problem with anything in the repository, please feel free to create an issue. Even if you are not sure if its a problem with the framework or your own code, create an issue and we will do our best to answer or resolve it.

* ### Solve an issue

Scan through our [existing issues](https://github.com/Rajeshkeshoju/quest-jntuh/issues) to find one that interests you. You can narrow down the search using `labels` as filters. If you find an issue to work on, please make sure to get it assigned to you by the respective maintainer and submit the corresponding fix.

**Thank you for supporting the project !🎊**