vibelet 1.2.92 → 1.2.98
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 +7 -7
- package/dist/index.cjs +1 -1
- package/dist/runtime-version.cjs +1 -1
- package/dist/vibelet.mjs +269 -66
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,15 +43,15 @@ vibelet --version # Show CLI version
|
|
|
43
43
|
## Options
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
vibelet --local
|
|
47
|
-
vibelet --remote --force
|
|
48
|
-
vibelet --
|
|
49
|
-
vibelet --
|
|
50
|
-
vibelet --host
|
|
51
|
-
vibelet --
|
|
46
|
+
vibelet --access=local # Skip the default Cloudflare Tunnel for this run
|
|
47
|
+
vibelet --access=remote --force # Force a fresh tunnel URL
|
|
48
|
+
vibelet --access=https://<your-tunnel-url> # Use your own tunnel URL
|
|
49
|
+
vibelet --access=<tailscale-or-lan-host> # Use a direct private-network host
|
|
50
|
+
vibelet --access=<host>,<fallback1> # Add fallback private-network hosts
|
|
51
|
+
vibelet --access= # Clear saved relay URL
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
Remote access is enabled by default for `vibelet`, `vibelet start`, `vibelet restart`, and `vibelet reset`. Use `--local` when you want a LAN-only QR code for that run.
|
|
54
|
+
Remote access is enabled by default for `vibelet`, `vibelet start`, `vibelet restart`, and `vibelet reset`. Use `--access=local` when you want a LAN-only QR code for that run. Legacy aliases still work: `--local`, `--relay`, `--host`, `--fallback-hosts`, `--remote`, and `--tunnel`.
|
|
55
55
|
|
|
56
56
|
## Release
|
|
57
57
|
|