Files
komodo/frontend
Maxwell Becker cb270f4dff 1.15.12 (#139)
* add containers link to mobile dropdown

* fix update / alert not showing permission issue

* prevent disk alert back and forth

* improve user group pending toml
2024-10-18 17:14:22 -07:00
..
2024-10-18 17:14:22 -07:00
2024-04-07 16:08:23 -07:00
2024-10-14 23:04:49 -07:00
2024-10-12 21:42:46 -07:00
2024-10-14 23:04:49 -07:00
2024-04-07 16:08:23 -07:00
2024-10-12 21:42:46 -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