# 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 git checkout ``` 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 ```