Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/walterradduso/voting-dapp

DApp that allows people to vote something.
https://github.com/walterradduso/voting-dapp

antd antdesign dapp ethereum ethereum-contract ethereum-dapp metamask react solidity truffle

Last synced: 18 days ago
JSON representation

DApp that allows people to vote something.

Awesome Lists containing this project

README

        

# Voting Dapp

### Installing Dependencies
In order to build our dApp, we need a few dependencies first.
* Truffle Framework:
* ```npm install -g truffle```
* Ganache:
* [Download & Install](https://truffleframework.com/ganache)
* Metamask:
* [Chrome extension](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en)
* [Other Browsers](https://metamask.io/)

---

### Initialize the project
First of all, open **Ganache** and configure **MetaMask** in Chrome, then run the following commands in the command line:

* **Dependencies:** ```cd client && npm install && cd ..```

* **Compile:** ```truffle compile```

* **Migrate:** ```truffle migrate```

* **Run dev server:** ```npm run start```

---