-
Notifications
You must be signed in to change notification settings - Fork 0
Development
github-actions[bot] edited this page Sep 3, 2026
·
3 revisions
This page describes how to prepare the development environment.
From the project root:
cd frontend
npm installRun the Frontend Manually
npm run tauri:devFrom the project root, navigate to backend directory:
cd backend
poetry install --all-extras --with devRun the Backend Manually
For development:
cd backend
poetry run uvicorn main:app --host 127.0.0.1 --port 8765
# or
bash /start.shRun:
curl http://127.0.0.1:8765/openapi.jsonA JSON response confirms that the backend is running correctly.
Check the Backend Port
lsof -nP -iTCP:8765 -sTCP:LISTENDuring development, the Python backend can run directly through Poetry and Uvicorn.
This avoids packaging the backend every time frontend code changes.
Development Environment
│
├── React / TypeScript
│
├── Tauri
│
└── Poetry
│
▼
FastAPI / Uvicorn
│
▼
127.0.0.1:8765
© 2026 Recursive Zero. Maintained under the MIT License. GitHub Repository • Report an Issue • Documentation Home