Files
komodo/frontend
Maxwell Becker 2cfae525e9 1.15.3 (#109)
* fix parser support single quote '

* add stack reclone toggle

* git clone with token uses token:<TOKEN> for gitlab compatability

* support stack pre deploy shell command

* rename compose down update log stage

* deployment configure registry login account

* local testing setup

* bump version to 1.15.3

* new resources auto assign server if only one

* better error log when try to create resource with duplicate name

* end description with .

* ConfirmUpdate multi language

* fix compose write to host logic

* improve instrumentation

* improve update diff when small array

improve 2

* fix compose env file passing when repo_dir is not absolute
2024-10-08 23:07:38 -07:00
..
2024-10-08 23:07:38 -07:00
2024-10-06 23:54:23 -07:00
2024-10-08 16:55:24 -04:00
2024-10-06 23:54:23 -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