23 lines
586 B
Markdown
23 lines
586 B
Markdown
# Schemeta React Frontend (Track A)
|
|
|
|
Bootstrap React + TypeScript + Vite shell for Schemeta.
|
|
|
|
## Scripts
|
|
|
|
- `npm run dev` - start Vite dev server
|
|
- `npm run build` - type-check and build production bundle
|
|
- `npm run preview` - preview built bundle
|
|
- `npm run lint` - TypeScript no-emit check
|
|
- `npm run test` - placeholder test command
|
|
|
|
## API endpoints wired
|
|
|
|
The app client posts to the existing backend routes without contract changes:
|
|
|
|
- `POST /compile`
|
|
- `POST /analyze`
|
|
- `POST /layout/auto`
|
|
- `POST /layout/tidy`
|
|
|
|
Vite dev server proxies these routes to `http://localhost:8787`.
|