IBC Dashboard
Install Node and NPM. Install Docker to test production deployment images.
cd ibc-explorer
npm install
npm run devAlternatively you can run via Docker:
docker build -t ibc-explorer .
docker run -e API_URL=tcp://host.docker.internal:8080 -p 5001:5000 ibc-explorerTo run tests on a development server using the Cypress GUI:
npm run testTo 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)