You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,27 @@ Environment variables present in the shell always take precedence over `.env` va
82
82
---
83
83
## Launching the Benchmark Dashboard
84
84
85
+
### Quickstart scripts
86
+
87
+
Use the helper scripts to create/activate `.venv`, install the pinned dependencies (with hash verification), start `uvicorn`, and open the UI in your browser:
88
+
89
+
```bash
90
+
./scripts/devserver.sh
91
+
```
92
+
93
+
This serves the main dashboard at `http://127.0.0.1:8000/ui/index.html`.
94
+
95
+
For the QA dashboard (loads `OPENROUTER_API_KEY` from your shell or `.env` and supports custom host/port):
96
+
97
+
```bash
98
+
./scripts/devserver_qa.sh
99
+
```
100
+
101
+
Optional environment variables:
102
+
103
+
-`DEVSERVER_NO_REFRESH=1` (don’t auto-open the browser)
104
+
-`DEVSERVER_HOST` / `DEVSERVER_PORT` (QA script only; defaults to `127.0.0.1:8000`, and auto-selects `8001-8100` if `8000` is busy)
0 commit comments