Files
komodo/ui
Maxwell Becker 93cce3fb60 2.3.1 (#1553)
* add static connection user agent

* include server alerting thresholds in list info to reduce query

* fix database registry accounts lost

* dev-1

* deploy 2.3.1-dev-2

* CoreReport -> KomodoReport

* stack update available avoid many GetStack call on tables

* deploy 2.3.1-dev-3

* dashboard tables toml respects tag filter

* add post execution invalidate for better feedback when ws update is missed

* resource selector select first result on settle

* skip GetPermission call for admin users

* fmt

* 2.3.1

* fix clippy lint

* ts 2.3.1
2026-07-31 14:01:30 -07:00
..
2026-07-31 14:01:30 -07:00
2026-07-31 14:01:30 -07:00
2026-03-24 05:50:10 -07:00
2026-03-24 05:50:10 -07:00
2026-07-29 15:08:28 -07:00
2026-07-29 15:08:28 -07:00
2026-03-24 05:50:10 -07:00
2026-03-24 05:50:10 -07:00
2026-03-24 05:50:10 -07:00
2026-04-01 16:08:29 -07:00
2026-03-24 05:50:10 -07:00
2026-07-29 15:08:28 -07:00
2026-07-29 15:08:28 -07:00

Komodo UI

Komodo UI uses Yarn + Vite + React + Mantine UI

Setup Dev Environment

The UI depends on the local package komodo_client located at /client/core/ts. This must first be built and prepared for yarn link.

The following command should setup everything up (run with /ui as working directory):

cd ../client/core/ts && yarn && yarn build && yarn link && \
cd ../../../ui && yarn link komodo_client && yarn

You can make a new file .env.development (gitignored) which holds:

VITE_KOMODO_HOST=https://demo.komo.do

You can point it to any Komodo host you like, including the demo.

Now you can start the dev ui server:

yarn dev