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

https://github.com/teerasej/shopper-box


https://github.com/teerasej/shopper-box

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Shopper Box

This box has been based from [pet-shop-box](https://github.com/truffle-box/pet-shop-box).

## Installation

1. Install Truffle globally.
```javascript
npm install -g truffle
```

2. Download the box. This also takes care of installing the necessary dependencies.
```javascript
truffle unbox teerasej/shopper-box
```

3. Run the development console.
```javascript
truffle develop
```

4. Compile and migrate the smart contracts. Note inside the development console we don't preface commands with `truffle`.
```javascript
compile
migrate
```

5. Run the `liteserver` development server (outside the development console) for front-end hot reloading. Smart contract changes must be manually recompiled and migrated.
```javascript
// Serves the front-end on http://localhost:3000
npm run dev
```