Skip to content

Developer Guide

This section describes how to set up and run the application in a local development environment. This is ideal for development and testing purposes.

Prerequisites

Ensure Node.js is installed on your system.

Local deployment

Install dependencies with:

npm install

Set VITE_BASE_URL and VITE_WEBSOCKET_URL in .env file.

Start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build