INT wallet build on electron and vue
You can download the app on the release page, and install it. For updating, simply download the new version and install it.
To run int-wallet you need:
Install int-cli
$ npm install int-cli --global
Note: If you start int-cli in the terminal, please do not change the rpc port (default: 8555).
The data folder for int-wallet depends on your operation system:
- Windows
%APPDATA%\int-wallet
- macOs
~/Library/Application \Support/int-wallet
If you have install the dependencies, you're ready to initialize int-wallet for development.
For development, you can clone this repository.
$ git clone https://github.com/intfoundation/int-wallet
$ cd int-wallet
$ npm install
# serve with hot reload at localhost:9080
$ npm run dev
# build int-wallet application for production
$ npm run build
# run unit & end-to-end tests
$ npm test
# lint all JS/Vue component files in `src/`
$ npm run lint