Taiko node dashboard is aimed to provide quick and digestible insights into your Taiko node.
To run the dashboard simply append the following two services to the docker-compose.yml
of the taiko node.
To configure the dashboard for the Hekla testnet, use the hekla
image tag in wolfderechter/taiko-node-dashboard:hekla
.
taiko-node-dashboard:
image: wolfderechter/taiko-node-dashboard:latest
ports:
- "7744:80"
dojonode-systeminformation:
image: wolfderechter/dojonode-systeminformation:latest
ports:
- "3009:3009"
Or if you wish to run the dashboard standalone:
git clone https://github.com/dojonode/taiko-node-dashboard-docker
cd taiko-node-dashboard-docker
docker compose up
- visit http://localhost:7744 to access the dashboard
- Click on the 📡 button and change localhost to the IP address of the node's machine
Development steps
Make sure you have node and bun installed on your system. You can do it by:
brew install node
curl -fsSL https://bun.sh/install | bash
You can start the application with the following lines:
bun install
bun start
You'll probably also want to start the systeminformation application with:
git clone https://github.com/dojonode/dojonode-systeminformation
cd dojonode-systeminformation
bun server.js
To deploy to the website run: pnpm run predeploy
and pnpm run deploy
. This will build the website and push to the gh-pages
branch.