The Desktop Wallet of Vite.
The Vite Desktop Wallet supports Mac and Windows. Download and install.
This project requires the vite-web-wallet. You need init submodules first.
git submodule init
git submodule update
Install dependencies
yarn
Install the dependencies of vite-web-wallet
cd ../vite-web-wallet
# Be sure you are in the folder of vite-web-wallet
yarn
Launch the local dev server of vite-web-wallet
# Be sure you are in the folder of vite-web-wallet
yarn dev
Now open a new tab on terminal
yarn dev
Commit code:
yarn commit
First, you need build the vite-web-wallet dist:
# Be sure you are in the folder of vite-web-wallet
yarn build
Second, you need to build vite-wallet:
cd ../vite-wallet
# Be sure you are in the folder of vite-wallet
# Build Mac installation
yarn build
# Build Windows installation
yarn build:win
Before running release script, you need create a .env
file. About .env
config, you can look .env.example;
GH_TOKEN=<Github Personal Token: required>
GPG_SIGN_KEY=<GPG Sign Key: optional>
Here is the release script of vite-wallet. It do something like:
- Bump version
- Choose which platform to build
- Release package to github
- Sigin with GPG key
yarn release