chore: bootstrap devopspanel scaffold

This commit is contained in:
dev-agent
2026-04-28 16:06:16 +00:00
commit 99878bae4c
13 changed files with 325 additions and 0 deletions

37
README.md Normal file
View File

@@ -0,0 +1,37 @@
# 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
- Minimal frontend shell only.
- No live API wiring in the baseline commit.
- `environment summary` stays mock-only until a worker-visible route exists in the current backend runtime.
## Next development slice
1. Add app shell sections for `timeline`, `audit feed`, and `environment summary`.
2. Introduce typed DTO/fixture layer from the approved first-slice contracts.
3. Keep `environment summary` behind mock data until the live route is available.