Spaces:
Running
Running
frontend/
Frontend ownership and structure.
- Source-managed React frontend lives in frontend/react.
- Built with Vite and served by FastAPI at
/ui. - UI is now module-based:
OverviewSimulation LabTraining StudioModel Comparison
- Backend APIs remain under
/api/*.
Local frontend dev:
- Start backend:
.\.venv313\Scripts\python.exe scripts\run_local.py --host 0.0.0.0 --port 7860
- Start Vite dev server:
cd frontend/reactnpm installnpm run dev
- Open:
http://localhost:5173
Build for backend serving:
cd frontend/reactnpm run build
Deployment path:
- UI route:
/ui - Asset route:
/ui/assets/*