Welcome to the Distro-Sandbox!

This was built for distribution team engineers to explore creating a frontend application within the Orchard Suite.

### Setup

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

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

To get the app running in development mode:

```bash
cp .env.shadow .env # initialize environment configuration
edit .env and add auth0 client id for `distro-sandbox-login` application

yarn --frozen-lockfile # install all dependencies
yarn frontend start # start dev server
```
Open http://localhost:8080 to view it in the browser.
The page will reload if you make edits.

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

### Tests

```bash
yarn run test
yarn run lint
```
