/sunodo

Sunodo monorepo

Primary LanguageTypeScriptApache License 2.0Apache-2.0

Sunodo

Release Packages

Sunodo is a framework for developing decentralized applications built on top of Cartesi technology. It helps developers to:

  • create applications from templates
  • build applications from source to a Cartesi machine
  • run applications in a local development environment
  • test applications running inside a Cartesi machine
  • deploy applications to a cloud provider
  • monitor application already running on a cloud provider
  • doctor verify the minimal requirements for the Sunodo CLI commands

Apps and Packages

  • cli: a oclif CLI tool for development, deployment and management of applications, available at brew install sunodo/tap/sunodo;
  • docs: a VitePress app with Sunodo documentation, deployed at https://docs.sunodo.io
  • web: a next.js app for Sunodo website, deployed at https://sunodo.io
  • app: a next.js app for Sunodo dashboard, deployed at https://app.sunodo.io
  • anvil: Docker image of anvil, multi-arch;
  • car-download: Utility library and CLI to download IPFS CAR to local filesystem;
  • rollups-node: Docker image of a Cartesi node for a local devnet execution;
  • sdk: Docker image to help with Cartesi build and execution;
  • contracts: smart contracts for application deployment;
  • token: ERC-20 token smart contract for testing;
  • devnet: Docker image for local devnet execution bundling Cartesi and Sunodo smart contracts;
  • ui: a stub React component library shared by both web and app applications
  • eslint-config: eslint configurations (includes eslint-config-next and eslint-config-prettier)
  • tsconfig: tsconfig.jsons used throughout the monorepo

Each package/app is 100% TypeScript.

Build

To build all apps and packages, run the following command:

cd sunodo
yarn run build

Develop

To develop all apps and packages, run the following command:

cd sunodo
yarn run dev