licell 0.9.34 → 0.9.35
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 -1
- package/dist/licell.js +178 -174
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,10 +24,23 @@
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
-
##
|
|
27
|
+
## 安装
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
+
# 方式一:npm 全局安装(推荐)
|
|
31
|
+
npm install -g licell
|
|
32
|
+
|
|
33
|
+
# 方式二:脚本安装
|
|
30
34
|
curl -fsSL https://github.com/agents-infrastructure/licell/releases/latest/download/install.sh | bash
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## 你可以先看这 3 行(或直接敲 `licell`)
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
# 方式 A:直接运行 licell,将自动进入交互式的新手引导(登录 + Agent 设置)
|
|
41
|
+
licell
|
|
42
|
+
|
|
43
|
+
# 方式 B:手动执行
|
|
31
44
|
licell login --region cn-hangzhou
|
|
32
45
|
licell init --runtime nodejs22 && licell deploy --type api --target preview
|
|
33
46
|
```
|