excelsia / vee-wallet-gui

VEE Reference Wallet GUI with Browser Wallet and Cold Wallet Monitoring
MIT No Attribution
8 stars 5 forks source link

Vee Wallet Gui

vee wallet gui based on the basic wallet and cold wallet.

Directory Structure

.
├── src                                  // all files of the application
│   ├── assets
│   │   └── imgs                         // image files
│   │   └── style                        // common less styles
│   ├── components/                      // js files of components
│   ├── utils/                           // js utils
│   ├── lib/                             // common library
│   ├── main.js                          // entrance of js
│   ├── router.js                        // defination of router
│   └── App.vue                          // entrance of vue
│
├── public                               // static html and icon files
│   ├── favicon.ico
│   └── index.html
│
├── .gitignore
├── README.md
├── babel.config.js                      // config of babel
├── gulpfile.js                          // scripts of gulp
├── package.json                         // npm settings
└── server.js                            // local server for development

How to run locally

  1. install node.js (homebrew or https://nodejs.org/)

  2. clone this project

$ git clone https://github.com/excelsia/vee-wallet-gui.git
  1. install packages
  $ cd vee-wallet-gui
  $ npm install
  1. run
$ npm run dev
  1. open the website on localhost:8080