24 lines
369 B
Markdown
24 lines
369 B
Markdown
# 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
|
|
```
|