Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 594 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 594 Bytes

Package delivery ĐAPP

Simple ethereum blockchain app simulating package delivery service.

Installation

Download and install packages.

> npm install

Install Truffle globally.

> npm install -g truffle

Compile and migrate the smart contracts. Default setup is for local network (e.g. testrpc) to change edit truffle.js.

> truffle compile
> truffle migrate

Run the webpack server for front-end hot reloading.

// Serves the front-end on http://localhost:8080
> npm run dev

Run tests.

> npm test