# Frontend Auth: Assets

## Overview

The static files are powering the js / css and images used by the application.
For qa and production environment, the files are directly served from the
CDN with a manifest (for versioning). Locally, you can generate the files by
running `npm run deploy`.

## Setup

```bash
npm install # installs all package.json dependencies
```

## Development

### Tasks

* `npm run deploy`: generates in `./static/build/` the assets (js, css, images).
* `npm test` to unit tests (run with SOURCE_MAPS=true for webpack source maps)
* `npm run lint` to run the linter
* `npm run test:watch` to run the tests continuously (useful during development).
