https://github.com/vitelabs/vite-web-wallet
Web Wallet of Vite Network
https://github.com/vitelabs/vite-web-wallet
vite webwallet
Last synced: about 1 year ago
JSON representation
Web Wallet of Vite Network
- Host: GitHub
- URL: https://github.com/vitelabs/vite-web-wallet
- Owner: vitelabs
- License: gpl-3.0
- Created: 2018-09-10T12:21:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-26T03:10:05.000Z (about 1 year ago)
- Last Synced: 2025-04-09T18:18:30.098Z (about 1 year ago)
- Topics: vite, webwallet
- Language: HTML
- Homepage: https://vite.net/
- Size: 36 MB
- Stars: 54
- Watchers: 9
- Forks: 29
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vite-web-wallet (SPA)
## Prerequisite
* yarn
## Building (webpack)
`yarn run build`
## Start
1. `yarn install`
2. `yarn run dev`
3. Visit in explorer: `http://localhost:8081`
### Branch naming rules
* Develop on branch `dev/{version}/{function name}`
* Test on branch `test`
* Fixed version on branch `dev/{version}`
* Production branch `production`
> Notice: development branch split from `dev/{last_version}`. If `dev/{last_version}` is not exist, split from `master`
#### Examples
`'dev/2.0.0/utf8' from 'dev/1.0.0' || 'master'`
### Router Rules
Files under `src/pages` path will follow the rules and auto generate routes and sub-routes, the level of routes is consistence with the folder path.
Define router alias in `src/router/config.js`
> Notice: The routes will generate only if `index.vue` exists in main folder.
#### Examples
`src/pages/trade/openOrders/index.vue` => `/tradeOpenOrders`