@instafy/cli 0.1.0-staging.138 → 0.1.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/README.md +5 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
# Instafy CLI (
|
|
1
|
+
# Instafy CLI (Developer Preview)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Use this CLI to link a folder to an Instafy project and run a self-hosted runtime (desktop or server) that connects back to Instafy Studio (including tunnels).
|
|
4
|
+
|
|
5
|
+
Primary commands:
|
|
4
6
|
|
|
5
7
|
- `instafy runtime:start` — launch the runtime in the current machine (foreground by default, `--detach` to background).
|
|
6
8
|
- `instafy runtime:status` — report health of the last started runtime.
|
|
@@ -62,5 +64,5 @@ Tunnels are controller-managed: the runtime-agent requests a tunnel assignment f
|
|
|
62
64
|
## Notes
|
|
63
65
|
|
|
64
66
|
- The CLI reuses the locally built `runtime-agent` binary from `target/{debug,release}`. Run `cargo build -p runtime-agent` first or set `INSTAFY_RUNTIME_AGENT_BIN` to an explicit path.
|
|
65
|
-
- Runtime/origin tokens require the controller to be configured with the Ed25519 signing pair (`RUNTIME_SIGNING_PRIVATE_KEY` / `RUNTIME_SIGNING_PUBLIC_KEY
|
|
67
|
+
- Runtime/origin tokens require the controller to be configured with the Ed25519 signing pair (`RUNTIME_SIGNING_PRIVATE_KEY` / `RUNTIME_SIGNING_PUBLIC_KEY`).
|
|
66
68
|
- Logs for detached runs are written to `~/.instafy/cli-runtime-logs/*`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instafy/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "CLI for connecting local folders to Instafy projects and running self-hosted runtimes (including tunnels).",
|
|
4
5
|
"private": false,
|
|
5
6
|
"publishConfig": {
|
|
6
7
|
"access": "public"
|