Skip to content
This repository has been archived by the owner on May 9, 2021. It is now read-only.

Latest commit

 

History

History
42 lines (29 loc) · 515 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 515 Bytes

web-EtherQL

A simple webview for ethereum depending on geth and mongodb.

Docker

$ docker-compose up

Common Way

1. Sync blockchain data

$ geth --rpc

2. Start Mongodb

Run a mongod process as a daemon.

3. Check Configuration

$ cat etherql.cfg.json 
{
    "mongo": "mongodb://localhost/ethereum",
    "gethHost": "localhost",
    "gethPort": 8545
}

4. Start Web Server

$ npm install
$ npm run start