@demogo-cn/cli 0.3.4 → 0.4.0

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
@@ -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.3.4.zip`.
9
+ 1. Unzip `demogo-cli-v0.4.0.zip`.
10
10
  2. Open a terminal in the extracted folder.
11
11
  3. Run:
12
12
 
@@ -58,7 +58,9 @@ Project names are used for display in the DemoGo workbench. Every first publish
58
58
 
59
59
  ## Current Boundary
60
60
 
61
- DemoGo supports static pages, single HTML pages, built frontend output, and frontend source projects that can build static output. It does not host long-running backend services, databases, payment systems, login systems, WebSocket services, or SSR runtimes.
61
+ DemoGo supports static pages, single HTML pages, built frontend output, frontend source projects that can build static output, and Node.js single-service trial projects when the platform reports that the Node runtime is available. Node.js projects must provide a start command and listen on `process.env.PORT`.
62
+
63
+ DemoGo can allocate an empty MySQL trial database for supported Node.js single-service projects. It does not currently run Redis, MongoDB, PostgreSQL, multi-service apps, WebSocket, or SSR runtimes such as Next/Nuxt/Remix server mode.
62
64
 
63
65
  ## npm / npx Status
64
66
 
package/lib/core.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { mkdir, readdir, readFile, stat, writeFile } from "node:fs/promises";
3
3
  import path from "node:path";
4
4
 
5
- export const VERSION = "0.3.4";
5
+ export const VERSION = "0.4.0";
6
6
  export const MAX_FILES = 800;
7
7
  export const MAX_BYTES = 50 * 1024 * 1024;
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demogo-cn/cli",
3
- "version": "0.3.4",
3
+ "version": "0.4.0",
4
4
  "description": "DemoGo CLI for generating shareable trial links from AI-built pages.",
5
5
  "type": "module",
6
6
  "bin": {