vmlive 1.0.14 → 1.0.15
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 +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,6 +40,12 @@ Uploads the local code to the vm.live edge platform.
|
|
|
40
40
|
- Bundles the code using `esbuild`.
|
|
41
41
|
- Evaluates and injects environment variables from `.env` and `.env.production`.
|
|
42
42
|
|
|
43
|
+
### `npx vmlive db push [local|remote]`
|
|
44
|
+
Orchestrates Zero-Config declarative D1 schema migrations.
|
|
45
|
+
- Discovers raw `.sql` files within the `migrations/` folder at the root of your project.
|
|
46
|
+
- **`local`**: Evaluates files headless locally completely mirroring Cloudflare's Edge V8 SQLite dialect.
|
|
47
|
+
- **`remote`**: Natively routes your SQL to Gatekeeper to provision schema into the physical Cloudflare global footprint.
|
|
48
|
+
|
|
43
49
|
## AI / LLM Tooling Setup
|
|
44
50
|
|
|
45
51
|
If you are using an AI assistant (such as Cursor, Copilot, or Aider) to write code, provide it with the platform context to ensure it adheres to the V8 Isolate execution model and uses the correct infrastructure bindings.
|