Go to file
ZhenYi 0703816482 feat(ssh): enhance ref update handling and add push queue
- Add post-receive refs tracking with mutex-protected storage
- Improve branch protection error messages with actionable guidance
- Add push queue slot waiting mechanism for concurrent push control
- Support for checking push queue availability before push operations
2026-05-15 11:48:40 +08:00
apps refactor(apps): apply rustfmt formatting across all application binaries 2026-05-14 10:01:25 +08:00
deploy fix deploy repo volume permissions 2026-05-15 00:50:13 +08:00
docker feat(docker): add safe.directory git config for git-enabled containers 2026-05-13 00:32:41 +08:00
libs feat(ssh): enhance ref update handling and add push queue 2026-05-15 11:48:40 +08:00
public fix(react): switch namespace import to default import to fix stale Vite CJS interop 2026-05-12 22:03:54 +08:00
scripts feat(scripts): add deployment and build utility scripts 2026-05-11 17:08:29 +08:00
src add rum 2026-05-15 00:44:05 +08:00
.dockerignore feat(core): initialize project with access control and AI integration 2026-05-10 22:15:52 +08:00
.env.example feat(core): initialize project with access control and AI integration 2026-05-10 21:01:21 +08:00
.gitignore fix(workspace): resolve all cargo check warnings across workspace 2026-05-10 21:56:08 +08:00
.mcp.json feat(core): initialize project with access control and AI integration 2026-05-10 21:01:21 +08:00
.prettierignore feat(core): initialize project with access control and AI integration 2026-05-03 06:04:31 +08:00
.prettierrc feat(core): initialize project with access control and AI integration 2026-05-03 06:04:31 +08:00
build.sh feat(core): initialize project with access control and AI integration 2026-05-10 21:01:21 +08:00
bun.lock add rum 2026-05-15 00:44:05 +08:00
Cargo.lock Enable RSA support in russh 2026-05-14 21:45:05 +08:00
Cargo.toml Enable RSA support in russh 2026-05-14 21:45:05 +08:00
components.json chore(deps): update dependencies and add shadcn components.json 2026-05-12 13:07:47 +08:00
deploy.sh fix(deploy): hardcode PVC name as shared-data in templates, remove pvcName Helm value 2026-05-12 16:36:13 +08:00
eslint.config.js feat(api,config): add ESLint rules, update OpenAPI schema with fork API and project stats 2026-05-14 10:02:44 +08:00
index.html chore: update package.json dependencies and index.html 2026-05-14 21:51:05 +08:00
lib.rs
openapi.json feat(api,config): add ESLint rules, update OpenAPI schema with fork API and project stats 2026-05-14 10:02:44 +08:00
orval.config.ts feat(core): initialize project with access control and AI integration 2026-05-03 06:04:31 +08:00
package.json add rum 2026-05-15 00:44:05 +08:00
push.sh feat(core): initialize project with access control and AI integration 2026-05-10 21:01:21 +08:00
README.md feat(core): initialize project with access control and AI integration 2026-05-03 06:04:31 +08:00
tsconfig.app.json feat(core): initialize project with access control and AI integration 2026-05-03 06:04:31 +08:00
tsconfig.json feat(core): initialize project with access control and AI integration 2026-05-03 06:04:31 +08:00
tsconfig.node.json feat(core): initialize project with access control and AI integration 2026-05-03 06:04:31 +08:00
uninstall.sh fix(ops): preserve resources on deploy failure and protect ConfigMap/PVC from deletion 2026-05-11 00:17:43 +08:00
vite.config.ts chore: update Vite config and add channel animations CSS 2026-05-14 23:13:52 +08:00

React + TypeScript + Vite + shadcn/ui

This is a template for a new Vite project with React, TypeScript, and shadcn/ui.

Adding components

To add components to your app, run the following command:

npx shadcn@latest add button

This will place the ui components in the src/components directory.

Using components

To use the components in your app, import them as follows:

import { Button } from "@/components/ui/button"