Skip to main content

Local Development

How to setup your local development environment to add to Kube Knots

Kube Knots App

Quickest way to get started is to fork the repository and clone it locally.

git clone https://github.com/<your username>/kube-knots.git

Follow the guide from the tauri website to install the necessary dependencies.

Install the necessary dependencies

yarn install

Then run the app

yarn dev

You may need to install the rust dependencies if the yarn dev does not auto install them.

cd app/kube-knots/src-tauri
cargo install --path .

Documentation

The documentation is built using Docusaurus.

To run the documentation locally, run the following commands:

yarn doc:dev

And visit localhost:3000 in your browser.