Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 789 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 789 Bytes

The Phoenix Desktop Wallet

Build and Start Desktop Wallet

Run the following commands to start the wallet as electron app

  1. npm install
  2. cd ../../lib
  3. npm install
  4. cd ../web/angular-wallet
  5. npm install
  6. cd ../../desktop/wallet
  7. npm start

Create Desktop Wallet Executable for Deployment

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)