Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

feat(doc): add codegate-ui documentation #427

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,45 @@ from potential AI-related security risks. Key features include:
poetry install --with dev
```

## Dashboard CodeGate UI
### Setting up local development environment

Clone the repository
```bash
git clone https://github.com/stacklok/codegate-ui
cd codegate-ui
```

To install all dependencies for your local development environment, run

```bash
npm install
```

### Running the development server

Run the development server using:

```bash
npm run dev
```

### Build production

Run the build command:

```bash
npm run build
```

### Running production build

Run the production build command:

```bash
npm run preview
```

## Project structure

```plain
Expand Down
Loading