## {{cookiecutter.repo_name}}

### Setup

Make sure your yarn and node versions are up to date:

```bash
brew upgrade node
brew upgrade yarn
```

A grass token is needed to run the application. See how to obtain one for development [here](https://github.com/theorchard/ows-grass#session-token).

You will need to be able to access the QA microservices (i.e., be in the office, or on the VPN) for the grass token to be authenticated, and for the app to display anything.

To get the app running in development mode:

```bash
cp .env.shadow .env # initialize environment configuration
edit .env and add grass token
yarn --frozen-lockfile # install all dependencies
yarn start:{{cookiecutter.webpack_entry_name}} # start dev server
```

To see all available tasks, run `yarn run`.
