vue-polkadot / apps

wallet & governance dashboard for Polkadot & substrate-based networks in VueJS
https://twitter.com/KodaDot
MIT License
42 stars 26 forks source link
polkadot substrate vuejs wallet

⚠️ Archived

This repository has been archived and we've moved on the new avenue being NFT explorer

https://github.com/kodadot/nft-gallery

πŸ“± Apps

Apps are core components of KodaDot wallet.

Basic usage is to interact from browser with Polkadot and Substrate based networks.

🐦 Follow us on Twitter @KodaDot

▢️ Demo versions

πŸ•Ή Play

git clone git@github.com:vue-polkadot/apps.git
cd dashboard
yarn
yarn serve

Now, access apps in your browser at http://127.0.0.1:9090/. You can also open the URL in your browser from another terminal session like this.

open http://localhost:9090/

🏦 Stage One

🏯 Stage Two

πŸ— Development

Contribution is welcome!

We are using yarn workspace, as installing things via npm will result in broken dependencies.

πŸ‘·β€β™€οΈ Get Started

  1. Clone the repo git clone git@github.com:vue-polkadot/apps.git <optional local path>
  2. Ensure that you have a recent LTS version of Node.js, we are using in time of writing version v12.16.0
  3. Recent version of Yarn, we are now using 1.22.4
  4. Install the dependencies by running yarn
  5. Now you can launch the UI. You can have local running Substrate node or connect to existing networks
  6. Access the UI at http://localhost:8080/

πŸ™‹β€β™€οΈ I want to contribute

Sure, your contribution is welcome. Please follow code of conduct and contribution guidelines

🐳 Docker

If you want just to try out our KodaDot on Kusama and have full local setup with local node, we assume you have docker and docker-compose installed. We have are building images from develop and master branch

You need to make yourself be in /dashboard directory first

docker-compose pull && docker-compose up

If you want to run just KodaDot

docker-compose up kodadot

Build docker image of KodaDot

docker build -t hello/kodadot .

Run it locally and then visit localhost:8080

docker run -it -p 8080:8080 --rm --name hellokodadot hello/kodadot