Run the following commands to start the wallet as electron app
npm install
cd ../../lib
npm install
cd ../web/angular-wallet
npm install
cd ../../desktop/wallet
npm start
To create a platform dependent executable run step 1 to 6 (if not already done) and then run
npm run release:<platform>
, where platform
can be one of
- all (builds for all platforms)
- win32
- linux
- macos
The executable will be written into ./release-builds
| To build win32 on linux you need wine installed, additionally rpm must be installed, too
Example:
npm release:win32
creates an .exe for windows (x86/x64)