> For the complete documentation index, see [llms.txt](https://pleex.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pleex.gitbook.io/docs/contributing/how-to-contribute.md).

# How to contribute

## Start by forking:

## [**Pleex** ](https://github.com/E-RROR/pleex)**github**&#x20;

![Fork](/files/-M78JNRlk-ID39um9zAi)

## Then clone it:

```
$ git clone https://github.com/<your username/pleex
```

## To make changes create new branch:

```bash
git checkout -b [name_of_your_new_branch or feature]
```

## Install dependencies

```
npm install
```

## Run tests for your code

```bash
npm test or jest
```

## Changes done? push it to your repo

```bash
git add -A && git commit -m 'fix some bugs' && git push origin master
```

{% hint style="info" %}
after this steps simply run git pull to pleex repo on github web interface
{% endhint %}
