c8ctl-plugin-nano 1.3.0 → 1.3.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 +14 -0
- package/nanobpmn-binary.json +3 -3
- package/package.json +6 -6
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>
|
package/nanobpmn-binary.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "c8ctl-plugin-nano",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
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.
|
|
53
|
-
"@nanobpm/c8ctl-plugin-nano-darwin-x64": "1.3.
|
|
54
|
-
"@nanobpm/c8ctl-plugin-nano-linux-x64": "1.3.
|
|
55
|
-
"@nanobpm/c8ctl-plugin-nano-linux-arm64": "1.3.
|
|
56
|
-
"@nanobpm/c8ctl-plugin-nano-win32-x64": "1.3.
|
|
52
|
+
"@nanobpm/c8ctl-plugin-nano-darwin-arm64": "1.3.1",
|
|
53
|
+
"@nanobpm/c8ctl-plugin-nano-darwin-x64": "1.3.1",
|
|
54
|
+
"@nanobpm/c8ctl-plugin-nano-linux-x64": "1.3.1",
|
|
55
|
+
"@nanobpm/c8ctl-plugin-nano-linux-arm64": "1.3.1",
|
|
56
|
+
"@nanobpm/c8ctl-plugin-nano-win32-x64": "1.3.1"
|
|
57
57
|
}
|
|
58
58
|
}
|