This front-end application is developed on a fork of substrate-front-end-template.
Access the hosted version of the application here: https://cyborg-network.github.io/cyborg-connect/
For testing the whole network, please refer to Local Testing
# Clone the repository
git clone https://github.com/Cyborg-Network/cyborg-connect.git
cd cyborg-connect
npm installTo start cyborg connect in development first you need to create the metadata needed for type safety provided by papi. For this you need to point papi to a ws endpoint exposed by a running parachain (eg. wss://alphachain.cyborgnetwork.io or ws://127.0.0.1:9988 if you have a node running locally)
npx papi add cyborgParachain -w <WS-Endpoint>
npx papiYou can start in development mode to connect to a locally running node or a hosted node, depending on the endpoints defined .env.development
npm run startYou can also build the app in production mode,
npm run buildand open build/index.html in your favorite browser.