Files
komodo/frontend
Maxwell Becker aea5441466 1.16.9 (#172)
* BatchDestroyDeployment

* periphery image pull api

* Add Pull apis

* Add PullStack / PullDeployment

* improve init deploy from container

* stacks + deployments update_available source

* Fix deploy / destroy stack service

* updates available indicator

* add poll for updates and auto update options

* use interval to handle waiting between resource refresh

* stack auto update deploy whole stack

* format

* clean up the docs

* update available alerts

* update alerting format

* fix most clippy
2024-11-04 20:28:31 -08:00
..
2024-11-04 20:28:31 -08:00
2024-11-04 20:28:31 -08:00
2024-04-07 16:08:23 -07:00
2023-07-20 14:36:01 -07:00
2024-01-13 17:16:51 -08:00
2024-10-14 23:04:49 -07:00
2024-10-19 23:27:28 -07:00
2023-07-20 14:36:01 -07:00
2024-10-14 23:04:49 -07:00
2024-04-07 16:08:23 -07:00
2023-07-20 14:36:01 -07:00
2024-01-06 15:16:24 -08:00
2024-10-19 23:27:28 -07:00

Komodo Frontend

Komodo JS stack uses Yarn + Vite + React + Tailwind + shadcn/ui

Setup Dev Environment

The frontend 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 /frontend as working directory):

cd ../client/core/ts && yarn && yarn build && yarn link && \
cd ../../../frontend && 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 frontend server:

yarn dev