From the repo root, run:
.\dev.ps1or:
powershell.exe -File dev.ps1You'll be asked to choose an environment:
- [L]ocal — opens the backend (
venvactivate +pip install -r requirements.txt+uvicorn main:app --reload) and the frontend (npm install+npm run dev), each in their own PowerShell window. - [D]ocker — stops any existing containers (
docker compose down), then rebuilds and starts them (docker compose up --build). Requires Docker to be installed and running.