Split project into frontend and backend

This commit is contained in:
2026-08-13 16:24:36 +08:00
commit f051146486
274 changed files with 953932 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# Frontend / Backend Split
This repo is now split into:
- `backend/` - Python project, CLI, tests, CAD generation, requirements, docs
- `frontend/` - Vite/React UI
Run the backend from `backend/` and the frontend from `frontend/`.
Backend quick start:
```bash
cd backend
python -m pytest
```
Frontend quick start:
```bash
cd frontend
npm install
npm run dev
```