Blockchain Explorer
Host your very own blockchain explorer
Ping.Pub Explorer (Cosmos SDK Based Chain)
// clone your ping.pub explorer from your own repository
git clone https://github.com/YourUsername/explorer.git
// go to the folder
cd explorer
// create new screen
screen -S explorer
// Running with yarn
yarn --ignore-engines && yarn serve
// Building for web servers, like nginx, apache
yarn --ignore-engines && yarn build
cp -r ./dist/* <ROOT_OF_WEB_SERVER>
// Running with docker, change the port 8088 to any port you want.
./docker.sh
docker run -d -p 8088:80 ping.pub/dashboardLast updated