This is a monorepo managed by turborepo using Yarn v1 as the package manager. It holds two web apps and a few packages. A nextJS app called web that is the rollups-explorer UI. The second is a Storybook app called workshop to support showcase and quick development of components. The backend for the rollups-explorer can be found here
In case you are not using vscode, make sure you are configuring your IDE of choice to follow the rules set on the repository, so the development is coherent avoiding noise on pull requests and CI breaking because the formatter and linter checks failed.
Note
Have a look inside the .vscode/settings.json and make sure the default formatter matches and the editor.codeActionsOnSave
equivalent configuration is applied. The rule of thumb is to develop from the project's root folder.
You can add, remove and upgrade packages from within your monorepo using your package manager's built-in commands:
yarn workspace <workspace> add <package>
Refer to Turborepo package-installation for more information.
apps/web
: The Rollups explorer powered by Next.js framework.apps/workshop
: The Storybook App using Vite with HMR and some ESLint rules.packages/ui
: House components driven by Rollups domain.packages/rollups-wagmi
: Using wagmi-cli + plugins code generate assets to support interaction with blockchain.packages/eslint-config-cartesi
:eslint
configurations (includeseslint-config-next
andeslint-config-prettier
)packages/tsconfig
: A fewtsconfig.json
s that is used throughout the monorepo.
To start developing on all apps and packages, run the following command:
yarn run dev
Note
When running turborepo tasks like dev
or build
it will run apps like web and workshop in parallel. e.g. when you want only to do dev
on the web app, you should apply filtering to the task.
The filtering should be done by the name inside the package.json of the targeted apps/*
yarn run dev --filter=web --filter=@cartesi/rollups-explorer-ui
The project is using Vitest framework combined with testing-library for react in both packages/ui
and apps/web
for unit testing.
The project is using Playwright to run the E2E checks against the rollups-explorer UI. You can run the commands inside the web app.
Important
Make sure you have your app running in dev mode or a built version
For single run, execute the following:
yarn test:e2e
To run in a interactive way with watch mode run the following command (Preferred)
yarn run test:e2e:ui
Below is a table with env vars and its default value that is used by the Playwright config, that can be found inside the apps/web
Env variable | Default |
---|---|
E2E_BASE_URL |
http://localhost:3000 |
CI |
undefined |
To build all apps, run the following command:
yarn run build
Note
If developing inside the e.g. apps/web
make sure the assets it depends upon are built. Rule of thumb is always develop from the root project for a multitute of reasons (e.g. formatting and linting rules been correctly applied)
The project use tags that represent releases and currently if it hits the main
branch it will be live.
The tag format is as follows:
- Combined tag name
v
+ SemVer format tag (e.g. v0.3.0) to pinpoint repository state on a given production release.
Learn more about the power of Turborepo: