Update README to use npm scripts (which use --no-sign by default)

This commit is contained in:
Brad Christensen 2020-01-19 23:31:32 +13:00
parent b931e5d273
commit fc549fe006
1 changed files with 3 additions and 3 deletions

View File

@ -45,13 +45,13 @@ Desktop apps are built with `grunt desktop`. This works only in macOS as it buil
Also, a hardware token is required. Also, a hardware token is required.
To run Electron app without building an installer, build the app with `grunt` and start it this way: To run Electron app without building an installer, build the app with `grunt` and start it this way:
```bash ```bash
grunt dev npm run dev
npm run-script electron npm run electron
``` ```
For debug build: For debug build:
1. run `grunt dev` 1. run `npm run dev`
2. open `http://localhost:8085` 2. open `http://localhost:8085`
# Contributing # Contributing