Start the Agent on Windows
Quick Start (Recommended)
Open PowerShell in the project root.
Copy
Main/backend/.env.exampletoMain/backend/.envand add the required API keys.Run:
docker compose up
Docker builds the backend image with uv and serves it on http://localhost:8000.
Manual Run with uv
If you prefer to run Django directly, install dependencies with uv:
cd Main\backend
uv sync --python 3.12 --frozen
uv run playwright install chromium
uv run python manage.py runserver
Frontend Build (optional)
Rebuild the extension when frontend sources change:
cd Main\frontend
bun install
bun run build:full
Then load the unpacked extension from Main\frontend\dist via edge://extensions or chrome://extensions.