Built with vite & React. Visit r-apps here
-
- A cloud storage application for storing and managing files online
-
- A chat application
-
- A task manager application
and many more to come.
as of now, only r-cloud is live
pnpm install
pnpm dev
pnpm build
Run Unit Tests with Vitest
pnpm test:unit
Run End-to-End Tests with Cypress
pnpm test:e2e:dev
This runs the end-to-end tests against the Vite development server. It is much faster than the production build.
But it's still recommended to test the production build with test:e2e
before deploying (e.g. in CI environments):
pnpm build
pnpm test:e2e
Format with Prettier
pnpm format