mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-08 00:01:07 +00:00
* Add network io stats Add network usage graph and current status Change network graphs to use network interface from drop down menu Adjust the type to be able to get general network stats for the general UI view Working setup with a working builder remove changes to these dockerfile remove lock changes * change network hashmap to Vector * adjust all the network_usage_interface to be a vector rather than a hash map * PR requested changes applied * Change net_ingress_bytes and egress to network_ingress_bytes egress respectively * final gen-client types --------- Co-authored-by: mbecker20 <becker.maxh@gmail.com>
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