Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 629 Bytes

README.md

File metadata and controls

52 lines (33 loc) · 629 Bytes

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