$ wget https://github.com/burst-apps-team/phoenix/releases/download/v1.0.0-beta.6/phoenix-1.0.0-beta.6.tar.gz
$ tar zxvf phoenix-1.0.0-beta.6.tar.gz
$ cd phoenix-1.0.0-beta.6/
$ sudo chown root:root ./chrome-sandbox
$ sudo chmod 4755 ./chrome-sandbox
$ ./phoenix
You need installed globally angular-cli: npm i @angular/cli -g
Run the following commands to start the wallet as electron app
cd lib
npm install
npm run bootstrap
cd ../web/angular-wallet
npm install
cd ../../scripts
npm install
cd ../desktop/wallet
npm install
npm start
Argument | Description |
---|---|
--log | Enables Logging |
To create a platform dependent executable run step 1 to 9 (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 npm must be installed, too
Example:
npm release:win32
creates an .exe for windows (x86/x64)