docs(readme): add Windows PowerShell block to Individual services

Only had the Linux venv-activate + uvicorn commands; mirrors the
bash/powershell pairing already used in the Promethean section below.
This commit is contained in:
Jon Wingender
2026-08-05 19:09:25 -05:00
parent e3e8da0f42
commit e8379786d3
+9
View File
@@ -148,6 +148,7 @@ does all inference over HTTP).
### Individual services ### Individual services
```bash ```bash
# Linux
source Promethean/bin/activate source Promethean/bin/activate
uvicorn synapse.main:sio_app --host 0.0.0.0 --port 8000 --reload # backend (serves the UI too) uvicorn synapse.main:sio_app --host 0.0.0.0 --port 8000 --reload # backend (serves the UI too)
@@ -158,6 +159,14 @@ uvicorn synapse.memory.service:app --host 0.0.0.0 --port 8001 --reload # me
cd interface/web && npm run dev cd interface/web && npm run dev
``` ```
```powershell
# Windows — needs the RemoteSigned policy from the Quick start step above
Promethean\Scripts\Activate.ps1
uvicorn synapse.main:sio_app --host 0.0.0.0 --port 8000 --reload # backend (serves the UI too)
uvicorn synapse.memory.service:app --host 0.0.0.0 --port 8001 --reload # memory
```
### Promethean ### Promethean
The name for the Python virtual environment all backend code runs in — keeps The name for the Python virtual environment all backend code runs in — keeps