IBC Dashboard
Install Node and NPM. Install Docker to test production deployment images.
cd ibc-explorer
npm install
npm run dev
Alternatively you can run via Docker:
docker build -t ibc-explorer .
docker run -e API_URL=tcp://host.docker.internal:8080 -p 5001:5000 ibc-explorer
To run tests on a development server using the Cypress GUI:
npm run test
To run tests on a production build in headless mode:
npm run build
npm run test:headless
(All tests are designed to use production graphql and chain-registry)