peerllm-host-cli 2.6.2 → 2.7.1
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/CHANGELOG.md +70 -0
- package/dist/cli/commands/changelog.d.ts +3 -0
- package/dist/cli/commands/changelog.d.ts.map +1 -0
- package/dist/cli/commands/changelog.js +101 -0
- package/dist/cli/commands/changelog.js.map +1 -0
- package/dist/cli/commands/dashboard.d.ts.map +1 -1
- package/dist/cli/commands/dashboard.js +9 -0
- package/dist/cli/commands/dashboard.js.map +1 -1
- package/dist/cli/commands/hybrid.d.ts +3 -0
- package/dist/cli/commands/hybrid.d.ts.map +1 -0
- package/dist/cli/commands/hybrid.js +92 -0
- package/dist/cli/commands/hybrid.js.map +1 -0
- package/dist/cli/commands/start.d.ts +9 -0
- package/dist/cli/commands/start.d.ts.map +1 -1
- package/dist/cli/commands/start.js +23 -4
- package/dist/cli/commands/start.js.map +1 -1
- package/dist/cli/index.js +8 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/core/hybrid-relay.d.ts +16 -0
- package/dist/core/hybrid-relay.d.ts.map +1 -0
- package/dist/core/hybrid-relay.js +56 -0
- package/dist/core/hybrid-relay.js.map +1 -0
- package/dist/core/hybrid-router.d.ts +24 -0
- package/dist/core/hybrid-router.d.ts.map +1 -0
- package/dist/core/hybrid-router.js +61 -0
- package/dist/core/hybrid-router.js.map +1 -0
- package/dist/daemon/pid-lock.d.ts.map +1 -1
- package/dist/daemon/pid-lock.js +45 -6
- package/dist/daemon/pid-lock.js.map +1 -1
- package/dist/daemon/rest-server.d.ts.map +1 -1
- package/dist/daemon/rest-server.js +49 -3
- package/dist/daemon/rest-server.js.map +1 -1
- package/dist/daemon/run.d.ts.map +1 -1
- package/dist/daemon/run.js +5 -1
- package/dist/daemon/run.js.map +1 -1
- package/dist/shared/config-types.d.ts +7 -0
- package/dist/shared/config-types.d.ts.map +1 -1
- package/dist/shared/config-types.js +1 -0
- package/dist/shared/config-types.js.map +1 -1
- package/package.json +2 -1
- package/templates/launchd/com.peerllm.host.daemon.plist +5 -1
- package/templates/launchd/com.peerllm.host.plist +5 -1
|
@@ -15,8 +15,12 @@
|
|
|
15
15
|
<key>SuccessfulExit</key>
|
|
16
16
|
<false/>
|
|
17
17
|
</dict>
|
|
18
|
+
<!-- Discard stdout: the daemon logs to its own files under {LOG_DIR}; nothing
|
|
19
|
+
useful goes to stdout, and launchd appends here forever with no rotation
|
|
20
|
+
(a TUI painting into this file once grew it to 16.8 GB). Keep stderr on a
|
|
21
|
+
file so genuine crash output (native aborts, fatal errors) survives. -->
|
|
18
22
|
<key>StandardOutPath</key>
|
|
19
|
-
<string
|
|
23
|
+
<string>/dev/null</string>
|
|
20
24
|
<key>StandardErrorPath</key>
|
|
21
25
|
<string>{LOG_DIR}/launchd-stderr.log</string>
|
|
22
26
|
</dict>
|