Skip to content

An open source frontend for accessing the Canto ecosystem

Notifications You must be signed in to change notification settings

Plex-Engineer/canto-io

Repository files navigation

Canto-io

Overview


Canto.io public repository.

Live site

Installation


To install all dependencies make sure you have yarn installed.

Use node version 16

# checkout correct nvm version
nvm use 16

# check to make sure node version 16 is being used
nvm --version

# install dependencies
yarn

Usage


Run application Locally:

# make sure application build properly
yarn build
# application will run on http://localhost:8000
yarn dev

Testing


All tests are written using the Jest testing library.

# run all tests
yarn test