Run the Frontend/Webinterface Locally
For development without docker, you can run the following commands.
Install node version 16, e.g. by using the Node Version Manager.
Launch the application by running the following command inside the
./frontend
directory.bashnpm 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).
bashnpm 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.