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.
taiko-node-dashboard:
image: wolfderechter/taiko-node-dashboard:latest
ports:
- "7744:80"
taiko-node-systeminfo:
image: wolfderechter/taiko-node-systeminfo: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 npm installed on your system. You can do it by:
brew install node
brew install npm
npm install -g pnpm
You can start the application with the following lines:
pnpm install
pnpm start
You'll probably also want to start the systeminformation application with:
git clone https://github.com/dojonode/dojonode-systeminformation
cd dojonode-systeminformation
node 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.