# How to contribute

## Start by forking:

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

![Fork](https://4000905606-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M6alWuRcY7vtXuWv7HL%2F-M78IlfQUmT2ajuiuuFQ%2F-M78JNRlk-ID39um9zAi%2Fdownload.png?alt=media\&token=e6b7f035-6a6c-4710-b1a5-cb58041d3db2)

## 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 %}
