@demogo-cn/cli 0.2.5 → 0.2.6
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 +11 -3
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ DemoGo CLI lets AI coding tools publish a local project to DemoGo and return a s
|
|
|
6
6
|
|
|
7
7
|
Current MVP delivery uses a local install package.
|
|
8
8
|
|
|
9
|
-
1. Unzip `demogo-cli-v0.2.
|
|
9
|
+
1. Unzip `demogo-cli-v0.2.6.zip`.
|
|
10
10
|
2. Open a terminal in the extracted folder.
|
|
11
11
|
3. Run:
|
|
12
12
|
|
|
@@ -32,6 +32,14 @@ Reset it only when it is lost, invalid, or exposed in chat/logs.
|
|
|
32
32
|
|
|
33
33
|
## Deploy
|
|
34
34
|
|
|
35
|
+
Use without installing:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npx --yes @demogo-cn/cli deploy
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Or use the installed command:
|
|
42
|
+
|
|
35
43
|
```bash
|
|
36
44
|
demogo deploy
|
|
37
45
|
```
|
|
@@ -48,10 +56,10 @@ DemoGo supports static pages, single HTML pages, built frontend output, and fron
|
|
|
48
56
|
|
|
49
57
|
## npm / npx Status
|
|
50
58
|
|
|
51
|
-
|
|
59
|
+
AI coding tools can run:
|
|
52
60
|
|
|
53
61
|
```bash
|
|
54
|
-
npx @demogo-cn/cli deploy
|
|
62
|
+
npx --yes @demogo-cn/cli deploy
|
|
55
63
|
```
|
|
56
64
|
|
|
57
65
|
Or install it globally:
|
package/lib/core.js
CHANGED