# {{projectTitle}}

{{projectDescription}}

## Running locally

To run the sample locally:

```bash
$ npm install
$ npm start
```

### Adding secrets locally

In order to have secrets support locally you should modify the `package.json`. 

```
  "start": "webpack -d --config webpack.config.js && wt serve build/bundle.js --secret SECRET=secret",
```

Note: For more info about `wt serve` run `wt serve -h`.

## Deploying to Auth0 Extensions

1. Go to [Auth0 Extensions](https://manage.auth0.com/#/extensions)
2. Click on `+ Create Extension`
3. Fill in the textbox with your GitHub repository URL
4. Click on `continue`
5. Finally, click on `install`

## Deploying using wt-cli

```bash
$ npm run bundle
$ wt create ./build/bundle.js --name {{projectName}} --param owner="{tenant_name}" --param version="1.0.0" --no-parse --no-merge -p {your_tenant_profile} 
```

Note: For more information about how to get `your_tenant_profile`, click [here](https://manage.auth0.com/#/account/webtasks).

## Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section.
