Canto.io public repository.
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
# make sure application build properly
yarn build
# application will run on http://localhost:8000
yarn dev
All tests are written using the Jest testing library.
# run all tests
yarn test