diff --git a/.gitignore b/.gitignore index 6aa4d99..e285bb9 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,6 @@ target/ # Brush prebuilt binary (reinstall via scripts/install_brush.sh) bin/brush bin/brush-app-aarch64-apple-darwin/ + +# GPU worker-pool config — primary only (a leaf worker must NOT have this) +nodes.json diff --git a/web/src/Dashboard.jsx b/web/src/Dashboard.jsx index b7fa51c..cae7876 100644 --- a/web/src/Dashboard.jsx +++ b/web/src/Dashboard.jsx @@ -83,6 +83,17 @@ export default function Dashboard({ jobs }) { ))} + {sys.nodes && sys.nodes.length > 1 && ( +
+ {sys.nodes.map((n) => ( +
+ 🖥 {n.name}{n.remote ? "" : " (this Mac)"} + GPU node · {n.busy ? "running a job" : "idle"} +
+ ))} +
+ )} +

Now running / queued