https://github.com/anistark/voting-dapp
https://github.com/anistark/voting-dapp
ethereum ethereum-contract ethereum-dapp solidity truffle truffle-framework voting voting-application
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anistark/voting-dapp
- Owner: anistark
- Created: 2017-06-11T07:27:55.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-16T19:40:47.000Z (about 9 years ago)
- Last Synced: 2025-02-06T07:12:54.917Z (over 1 year ago)
- Topics: ethereum, ethereum-contract, ethereum-dapp, solidity, truffle, truffle-framework, voting, voting-application
- Language: JavaScript
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# truffle-init-webpack
Example webpack project with Truffle. Includes contracts, migrations, tests, user interface and webpack build pipeline.
## Usage
To initialize a project with this exapmple, run `truffle init webpack` inside an empty directory.
## Building and the frontend
1. First run `truffle compile`, then run `truffle migrate` to deploy the contracts onto your network of choice (default "development").
1. Then run `npm run dev` to build the app and serve it on http://localhost:8080
## Possible upgrades
* Use the webpack hotloader to sense when contracts or javascript have been recompiled and rebuild the application. Contributions welcome!
## Common Errors
* **Error: Can't resolve '../build/contracts/MetaCoin.json'**
This means you haven't compiled or migrated your contracts yet. Run `truffle compile` and `truffle migrate` first.
Full error:
```
ERROR in ./app/main.js
Module not found: Error: Can't resolve '../build/contracts/MetaCoin.json' in '/Users/tim/Documents/workspace/Consensys/test3/app'
@ ./app/main.js 11:16-59
```