Documentation [here](https://docs.google.com/document/d/1wx7VAe00fd0tfXJYPBt7K74cEujVv0IRxAgRy59QiOc/edit#heading=h.18no354flgyl).  

# Installing The Frontend Application
The frontend is built using the React JS framework and gets all data from the Film Transparency API.

```sh
$ git clone git@github.com:theorchard/ows-film-transparency.git
$ cd ows-film-transparency/frontend
```

#### Environment Variables (no changes required)
```sh
frontend> cp .env.sample .env
```

#### Installing Requirements
```sh
frontend> yarn
```

#### Running The Frontend Application
```sh
$ yarn start
```

You can access the frontend by visiting [http://localhost:3000/](http://localhost:3000/).

#### Adding new dependency
```sh
$ yarn add <some-cool-library>
```
