aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
blob: a1f39c2ee10fc70288bf0e76feb05d6df291c678 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Contributing

To contribute you need [git](https://git-scm.com/) and [Node.js](https://nodejs.org/) set up.

## Setup

Set up the repository via a git clone and set up a new branch using the following commands:

```bash
git clone git@gitlab.com:KaranJayachandra/match_up.git
cd match_up
git checkout develop
git branch <branch-name>
git checkout <branch-name>
```

Now install the dependencies:

```bash
npm install
```

Start the dev server:

```bash
npm run dev
```

Run the test suite:

```bash
npm run test
```

Build a production bundle (output goes to `dist/`):

```bash
npm run build
```