Skip to content

Files

Latest commit

95c3e61 · Feb 15, 2024

History

History

app

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 3, 2023
Dec 31, 2023
Dec 3, 2023
Oct 3, 2022
Dec 3, 2023
Dec 3, 2023
Dec 3, 2023
Dec 3, 2023
Dec 3, 2023
Feb 15, 2024
Dec 3, 2023
Feb 24, 2023
Dec 3, 2023

Web Application (front-end)

Directory Structure

├──components — UI elements
├──core — Core modules, React hooks, customized theme, etc.
├──icons — Custom icon React components
├──public — Static assets such as robots.txt, index.html etc.
├──routes — Application routes and page (screen) components
├──global.d.ts — Global TypeScript declarations
├──index.html — HTML page containing application entry point
├──index.tsx — Single-page application (SPA) entry point
├──package.json — Workspace settings and NPM dependencies
├──tsconfig.ts — TypeScript configuration
└──vite.config.ts — JavaScript bundler configuration (docs)

Getting Started

$ yarn workspace app start

Scripts

  • start [--force] — Launch the app in development mode
  • build — Build the app for production
  • preview — Preview the production build
  • test — Run unit tests
  • coverage — Run unit tests with enabled coverage report
  • deploy [--env #0] — Deploy the app to Cloudflare (CDN)

References