Skip to content

Latest commit

 

History

History
49 lines (27 loc) · 684 Bytes

README.md

File metadata and controls

49 lines (27 loc) · 684 Bytes

kstack-ui

Web UI for kstack-agent. Built with React, Typescript, and Vite.

Available commands

yarn install

Install dependencies.

yarn run dev

Start the development server.

yarn run lint

Check for linting errors.

Use yarn lint:fix to fix linting errors. Use yarn lint:dump to dump all linting errors to eslint-report.xml

yarn build

Build the project for production.

yarn run docker:build

Build the Docker image.

docker build . -t kstack-ui

Run the Docker container locally.

yarn run docker:run

docker run \
  --rm \
  --publish 5080:80 \
  kstack-ui