2026-04-28 16:06:16 +00:00
|
|
|
# devopspanel
|
|
|
|
|
|
|
|
|
|
Baseline scaffold for the DevOps orchestration admin panel.
|
|
|
|
|
|
|
|
|
|
## Baseline stack choice
|
|
|
|
|
- Existing Mission Control backend runtime
|
|
|
|
|
- React 19
|
|
|
|
|
- TypeScript
|
|
|
|
|
- Vite 7
|
|
|
|
|
- OpenAPI-first typed integration in the next slices
|
|
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
```bash
|
|
|
|
|
npm install
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Run
|
|
|
|
|
```bash
|
|
|
|
|
npm run dev
|
|
|
|
|
```
|
|
|
|
|
Application defaults to `http://localhost:5173`.
|
|
|
|
|
|
|
|
|
|
## Quality checks
|
|
|
|
|
```bash
|
|
|
|
|
npm run build
|
|
|
|
|
npm run lint
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Current scope
|
2026-04-28 16:15:24 +00:00
|
|
|
- App shell slice for `timeline`, `audit feed`, and `environment summary`.
|
|
|
|
|
- Local typed fixtures only. No live API wiring.
|
|
|
|
|
- `environment summary` stays explicitly mock-only until a worker-visible route exists in the current backend runtime.
|