https://github.com/fgimenez/chainlist
https://github.com/fgimenez/chainlist
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/fgimenez/chainlist
- Owner: fgimenez
- Created: 2018-05-20T12:00:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-18T18:55:18.000Z (about 8 years ago)
- Last Synced: 2025-06-07T02:01:54.690Z (about 1 year ago)
- Language: JavaScript
- Size: 355 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ChainSkills Truffle Box
This Truffle 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 chainskills/chainskills-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
```