Skip to content

Installation

Vaibhav Chellani edited this page Dec 25, 2018 · 1 revision

Installation for development

Install all dependencies and tools

$ make dep

Build heimdall

$ make build

Start heimdall process

$ make run-heimdall

Start rest-server

$ make rest-server

Installation with Docker

Run Docker container

Create and run docker container with mounted directory -

$ docker run --name matic-heimdall -P -it \
    -v ~/.heimdalld:/root/.heimdalld \
    -v (pwd)/logs:/go/src/github.com/maticnetwork/heimdall/logs \
    "maticnetwork/heimdall:<tag-name>" \
    bash

Note: Do not forget to replace <tag-name> with actual tag-name.

Clone this wiki locally