@jamiexiongr/panda-hub 0.1.30 → 0.1.31
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 +24 -24
- package/bin/panda-hub.cjs +1 -1
- package/dist/{chunk-VOWZ4V3B.mjs → chunk-HVRU7VLO.mjs} +536 -2589
- package/dist/{chunk-MXQGMO73.mjs → chunk-R4XG3QOI.mjs} +2 -2
- package/dist/cli.mjs +2 -2
- package/dist/index.mjs +2 -2
- package/dist/{src-NI7ZHUVP.mjs → src-QDSFJEPG.mjs} +14 -28
- package/dist/web/assets/{diagnostics-page-BX9ilH-j.js → diagnostics-page-B1U4KFsP.js} +1 -1
- package/dist/web/assets/index-2xq-OQM2.js +148 -0
- package/dist/web/assets/index-DBWUmekP.css +1 -0
- package/dist/web/assets/{session-diff-preview-kDHdPa6S.js → session-diff-preview-D2OLvjY4.js} +1 -1
- package/dist/web/assets/{session-file-markdown-preview-DKYviOHs.js → session-file-markdown-preview-ChAPAUwv.js} +1 -1
- package/dist/web/assets/session-file-preview-page-DCpn44mO.js +53 -0
- package/dist/web/assets/{web-CcQ2B2v6.js → web-731MG9gc.js} +1 -1
- package/dist/web/assets/{web-BCkw8FnT.js → web-CVvrmG-0.js} +1 -1
- package/dist/web/assets/{web-Cg2SPsir.js → web-CasgI1aI.js} +1 -1
- package/dist/web/assets/{web-CiNw0NeJ.js → web-DR5ufVxV.js} +1 -1
- package/dist/web/assets/{web-CI5VgZbX.js → web-gFMIJiWK.js} +1 -1
- package/dist/web/assets/{xml-hyN8lXhw.js → xml-COG-BRHv.js} +1 -1
- package/dist/web/index.html +2 -2
- package/dist/web/sw.js +1 -1
- package/package.json +1 -1
- package/dist/web/assets/index-CdvROdNu.css +0 -1
- package/dist/web/assets/index-DPapkx9A.js +0 -208
- package/dist/web/assets/session-file-preview-page-B5cY0GxO.js +0 -38
package/README.md
CHANGED
|
@@ -2,30 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
Published hub runtime for Panda, including the built web UI.
|
|
4
4
|
|
|
5
|
-
## Usage
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
panda-hub
|
|
9
|
-
panda-hub tailscareserv
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
`tailscareserv` and `--tailscale-serve` both enable automatic `tailscale serve` publishing.
|
|
13
|
-
|
|
14
|
-
Windows service management:
|
|
15
|
-
|
|
16
|
-
```powershell
|
|
17
|
-
panda-hub service install --name=PandaHub tailscareserv
|
|
18
|
-
panda-hub service status
|
|
19
|
-
panda-hub service restart
|
|
20
|
-
panda-hub service uninstall
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
`service install` stores the startup args and current `PANDA_*` environment values in the Windows service definition. If you change them later, run `service install` again to update the service.
|
|
24
|
-
|
|
25
|
-
When enabled, hub startup will:
|
|
26
|
-
|
|
27
|
-
- detect whether `tailscale` is available and online
|
|
28
|
-
- run `tailscale serve --bg`
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
panda-hub
|
|
9
|
+
panda-hub tailscareserv
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
`tailscareserv` and `--tailscale-serve` both enable automatic `tailscale serve` publishing.
|
|
13
|
+
|
|
14
|
+
Windows service management:
|
|
15
|
+
|
|
16
|
+
```powershell
|
|
17
|
+
panda-hub service install --name=PandaHub tailscareserv
|
|
18
|
+
panda-hub service status
|
|
19
|
+
panda-hub service restart
|
|
20
|
+
panda-hub service uninstall
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
`service install` stores the startup args and current `PANDA_*` environment values in the Windows service definition. If you change them later, run `service install` again to update the service.
|
|
24
|
+
|
|
25
|
+
When enabled, hub startup will:
|
|
26
|
+
|
|
27
|
+
- detect whether `tailscale` is available and online
|
|
28
|
+
- run `tailscale serve --bg`
|
|
29
29
|
- print the generated Tailscale HTTPS URL in the startup log
|
|
30
30
|
|
|
31
31
|
## Environment
|
package/bin/panda-hub.cjs
CHANGED