Getting Started - Frontend
Prerequisites​
- Node.js version 20 or above (which can be checked by running
node -v). You can use nvm or nvm-windows for managing multiple Node versions on a single machine installed. When installing Node.js, you are recommended to check all checkboxes related to dependencies.
Setup​
The following steps will guide you through setting up the project on your local machine.
-
Cd into the project directory that is found in the
front/uifolder. -
Run the following command to install the project dependencies:
- npm
- pnpm
- Yarn
- Bun
npm install
pnpm install
yarn install
bun install
- Run the following command to start the development server:
- npm
- pnpm
- Yarn
- Bun
npm run dev
pnpm run dev
yarn dev
bun run dev