-
Notifications
You must be signed in to change notification settings - Fork 0
Development
This page describes how to prepare the development environment.
From the project root:
npm installInstall Backend Dependencies
From the backend directory:
cd backend
poetry installRun the Backend Manually
For development:
cd backend
poetry run uvicorn main:app --host 127.0.0.1 --port 8765Verify the Backend
Run:
A JSON response confirms that the backend is running correctly.
Check the Backend Port
lsof -nP -iTCP:8765 -sTCP:LISTEN
During 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
TODO: Add command for starting the complete development application.
TODO: Add frontend development workflow.
TODO: Add environment variable documentation.
TODO: Add database connection setup.
TODO: Add saved connection configuration documentation.
© 2026 Recursive Zero. Maintained under the MIT License. GitHub Repository • Report an Issue • Documentation Home