herm-tui 1.11.0-dev.4 → 1.11.0-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/index.js +216 -214
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -56,6 +56,20 @@ herm # fresh session
|
|
|
56
56
|
herm -c # resume last session
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
Attach to an already-running Hermes dashboard instead of spawning a local
|
|
60
|
+
gateway subprocess:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
herm --gateway-url 'ws://127.0.0.1:9119/api/ws?token=...'
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
HTTP(S) dashboard URLs are normalized to WS(S) and `/api/ws` is appended after
|
|
67
|
+
any path prefix. The URL must already carry a reusable `token` or `internal`
|
|
68
|
+
credential. OAuth-gated dashboards use single-use tickets and require an
|
|
69
|
+
authenticated client that can mint a fresh ticket for every reconnect. For
|
|
70
|
+
persistent configuration, set `HERM_GATEWAY_URL`. Herm also accepts the
|
|
71
|
+
upstream-injected `HERMES_TUI_GATEWAY_URL`.
|
|
72
|
+
|
|
59
73
|
Or run from source:
|
|
60
74
|
|
|
61
75
|
```bash
|