You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Ledger Wallet Desktop
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
* nodejs v8.x (https://nodejs.org/en/)
|
|
|
|
* yarn latest (https://yarnpkg.com/fr/docs/install)
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
#### Create .env file and complete it, if you want main & renderer errors to be tracked
|
|
|
|
|
|
|
|
```
|
|
|
|
SENTRY_URL=http://...
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Install dependencies
|
|
|
|
|
|
|
|
```
|
|
|
|
yarn
|
|
|
|
```
|
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
```
|
|
|
|
yarn start
|
|
|
|
```
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
> Not package for distribution
|
|
|
|
|
|
|
|
```
|
|
|
|
yarn dist:dir
|
|
|
|
```
|
|
|
|
|
|
|
|
> Package everything
|
|
|
|
|
|
|
|
```
|
|
|
|
yarn dist
|
|
|
|
```
|
|
|
|
|
|
|
|
## Release
|
|
|
|
|
|
|
|
```
|
|
|
|
yarn release
|
|
|
|
```
|