siteplane 0.1.60 → 0.1.62
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 -3
- package/dist/bin/siteplane.js +458 -338
- package/dist/index.js +374 -282
- package/dist/next.js +386 -309
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,7 +81,10 @@ siteplane setup deploy --wait
|
|
|
81
81
|
|
|
82
82
|
Commit only intended source before deploy. The CLI securely transfers its Production environment, adopts or
|
|
83
83
|
starts one matching deployment and verifies the actual build and signed runtime. Unchanged resume creates no
|
|
84
|
-
new deployment.
|
|
84
|
+
new deployment. If the linked project has multiple verified, non-redirecting Production domains, select the
|
|
85
|
+
canonical one on the first run with `siteplane setup deploy --wait --production-origin <https-origin>`. The CLI
|
|
86
|
+
rejects foreign, redirect, branch and unverified domains, stores the binding and reuses it on resume. A saved
|
|
87
|
+
15-minute provider deadline and operation identity prevent blind retries after response
|
|
85
88
|
loss. If that deadline expires after the deploy was requested, rerun the same command: each invocation gets a
|
|
86
89
|
bounded 120-second readback of that same operation. A ready result is adopted; a still-running or unreachable
|
|
87
90
|
provider remains resumable and never authorizes a second deploy. Uploads use committed source in a temporary
|
|
@@ -102,8 +105,8 @@ Before starting, add `.siteplane/credentials.json` to the repository’s `.gitig
|
|
|
102
105
|
unprotected credentials before any provisioning request.
|
|
103
106
|
|
|
104
107
|
```bash
|
|
105
|
-
npx -y siteplane@0.1.
|
|
106
|
-
npx -y siteplane@0.1.
|
|
108
|
+
npx -y siteplane@0.1.61 setup start --modules editing --instructions-file instructions.txt
|
|
109
|
+
npx -y siteplane@0.1.61 setup context
|
|
107
110
|
```
|
|
108
111
|
|
|
109
112
|
Start performs read-only preflight and saves the installation key and original request privately before the
|