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.

60 lines
959 B

# Ledger Wallet Desktop
7 years ago
[![CircleCI](https://circleci.com/gh/LedgerHQ/ledger-wallet-desktop.svg?style=svg)](https://circleci.com/gh/LedgerHQ/ledger-wallet-desktop)
[![Crowdin](https://d322cqt584bo4o.cloudfront.net/ledger-wallet/localized.svg)](https://crowdin.com/project/ledger-wallet)
:warning: Disclaimer: this project is under active development. Use at your own risks.
## Requirements
* nodejs v9.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://...
DEV_TOOLS_MODE=right|bottom|undocked|detach
DEBUG=lwd*,-lwd:sync
```
#### Install dependencies
7 years ago
```
yarn
```
## Development
7 years ago
```
yarn start
```
## Build
> Not package for distribution
7 years ago
```
yarn dist:dir
```
> Check bundle size
```
BUNDLE_ANALYZER=1 yarn dist:dir
```
> Package everything
7 years ago
```
yarn dist
```
## Release
```
yarn release
```