Updates
CI / test (push) Successful in 1m3s
Release rolling / release (push) Has been cancelled

This commit is contained in:
Raven Scott
2026-07-18 23:47:54 -04:00
parent e503e92dd4
commit 3fc0245b32
34 changed files with 834 additions and 197 deletions
+4 -4
View File
@@ -12,7 +12,7 @@ Built from the [pear-app-template](https://github.com/snxraven) HyperDHT + proto
| RPC | **protomux-rpc** + compact-encoding JSON |
| Metrics | 1s collector → tiered buffers → push + query |
| AuthZ | Roles (`viewer` / `operator` / `admin`) + `pd1.` invites + admin seed |
| HTTP | agent-style REST on `127.0.0.1:19999` |
| HTTP | agent-style REST on `127.0.0.1:18888` |
| Desktop | **Pear** (`pear-electron` + `pear-bridge` + `<pear-ctrl>`) |
---
@@ -43,8 +43,8 @@ npm install
npm run start:server
# Terminal B — REST smoke test
curl -s http://127.0.0.1:19999/api/v3/info | jq
curl -s 'http://127.0.0.1:19999/api/v3/data?chart=system.cpu&after=-30&points=30' | jq
curl -s http://127.0.0.1:18888/api/v3/info | jq
curl -s 'http://127.0.0.1:18888/api/v3/data?chart=system.cpu&after=-30&points=30' | jq
# Terminal C — mint an operator invite (optional)
npm run mint-invite -- operator
@@ -128,7 +128,7 @@ peardata/
| [Roadmap](./docs/ROADMAP.md) | MVP → advanced phases |
| [Architecture](./docs/ARCHITECTURE.md) | PearDock mapping, planes, modules |
| [Protocol](./docs/PROTOCOL.md) | RPC methods & pushes |
| [Data model](./docs/DATA-MODEL.md) | Metrics, anomalies, health, weights |
| [Data model](./docs/DATA-MODEL.md) | Metrics, anomalies, health, weights, logs |
| [REST API](./docs/REST-API.md) | `/api/v1\|v2\|v3` |
| [Dashboard](./docs/DASHBOARD.md) | Charts wall / Correlate product notes |
| [Tech choices](./docs/TECH-CHOICES.md) | Collector, charts, Bare maps |