Skip to content

Run the Frontend/Webinterface Locally

For development without docker, you can run the following commands.

  1. Install node version 16, e.g. by using the Node Version Manager.

  2. Launch the application by running the following command inside the ./frontend directory.

    bash
    npm install # install dependencies
    npm start # start local server

    If you run the application locally, Angular assumes the backend server is running at localhost:5000 (see Environment Variables - How the Application Behaves).

    bash
    npm start

Update Dependencies

To update the dependencies, run the following command inside the ./frontend directory.

bash
npm update

To update the Angular version, follow the Angular Update Guide.