Skip to content

Latest commit

 

History

History
72 lines (45 loc) · 1.33 KB

README.md

File metadata and controls

72 lines (45 loc) · 1.33 KB

r-apps

r-apps-logo

Welcome to R - Apps. A collections of r -applications

Built with vite & React. Visit r-apps here

A list of r - apps include

  • r-cloud

    • A cloud storage application for storing and managing files online
  • r-chat

    • A chat application
  • r-tm

    • A task manager application

and many more to come.

as of now, only r-cloud is live

Project Setup

pnpm install

Compile and Hot-Reload for Development

pnpm dev

Type-Check, Compile and Minify for Production

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