Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/walterradduso/voting-dapp
- Owner: walterradduso
- License: mit
- Created: 2018-12-03T11:39:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-04T15:49:36.000Z (about 6 years ago)
- Last Synced: 2024-11-14T08:37:14.189Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 403 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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```
---