Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 717 Bytes

Notes_For_Developers.md

File metadata and controls

43 lines (28 loc) · 717 Bytes

Notes for Developers

Prerequisites

Commands

  • Run the dev server (which includes both Rust and React dev servers):

    npm run dev
  • Run the production build setup (which includes both Rust and React production builds):

    npm run build
  • Only run the ReactJS dev server:

    npm run client:dev
  • Only run the Rust dev setup:

    npm run backend:dev
  • Only run the ReactJS build:

    npm run client:build
  • Only run the Rust build:

    npm run backend:build