c8ctl-plugin-nano 1.3.0 → 1.3.2

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 CHANGED
@@ -376,6 +376,20 @@ start/stop/status/logs lifecycle as `nano`.
376
376
  > setting the download URL you were given by the Nano BPM team, or by pointing
377
377
  > the plugin at a binary you already have.
378
378
 
379
+ ### Quick install (closed-alpha invitees)
380
+
381
+ If you were given a ProcessOS download URL, this one-liner installs the Camunda 8
382
+ CLI (`@camunda8/cli`) and this plugin, then configures the download URL:
383
+
384
+ ```bash
385
+ curl -fsSL https://gist.githubusercontent.com/jwulf/9015a7c660b274c568d80e85c3914161/raw/install-processos.sh \
386
+ | bash -s -- "<the download URL you were given>"
387
+ ```
388
+
389
+ (Requires Node.js 18+. The canonical script lives at
390
+ [`install-processos.sh`](./install-processos.sh).) Then run `c8ctl processos start`.
391
+
392
+
379
393
  ```bash
380
394
  # Closed-alpha channel: persist the download URL, then start
381
395
  c8ctl processos set download-url <url you were given>
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.2",
3
- "commit": "44ad803",
4
- "updated": "2026-06-30T06:04:34Z"
2
+ "version": "0.0.3",
3
+ "commit": "a3511a2",
4
+ "updated": "2026-06-30T20:29:46Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c8ctl-plugin-nano",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "type": "module",
5
5
  "description": "c8ctl plugin to start, inspect, and stop a local Nano BPM (nanobpmn) cluster",
6
6
  "main": "c8ctl-plugin.js",
@@ -49,10 +49,10 @@
49
49
  "semantic-release": "^25.0.3"
50
50
  },
51
51
  "optionalDependencies": {
52
- "@nanobpm/c8ctl-plugin-nano-darwin-arm64": "1.3.0",
53
- "@nanobpm/c8ctl-plugin-nano-darwin-x64": "1.3.0",
54
- "@nanobpm/c8ctl-plugin-nano-linux-x64": "1.3.0",
55
- "@nanobpm/c8ctl-plugin-nano-linux-arm64": "1.3.0",
56
- "@nanobpm/c8ctl-plugin-nano-win32-x64": "1.3.0"
52
+ "@nanobpm/c8ctl-plugin-nano-darwin-arm64": "1.3.2",
53
+ "@nanobpm/c8ctl-plugin-nano-darwin-x64": "1.3.2",
54
+ "@nanobpm/c8ctl-plugin-nano-linux-x64": "1.3.2",
55
+ "@nanobpm/c8ctl-plugin-nano-linux-arm64": "1.3.2",
56
+ "@nanobpm/c8ctl-plugin-nano-win32-x64": "1.3.2"
57
57
  }
58
58
  }