mirror of
https://github.com/moghtech/komodo.git
synced 2026-04-25 18:58:28 -05: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