siteplane 0.1.49 → 0.1.51
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 +19 -0
- package/dist/bin/siteplane.js +476 -292
- package/dist/index.js +232 -188
- package/dist/next.js +226 -186
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,6 +63,25 @@ preserves the Site, Run, runtime key, revalidation generation, selected fields a
|
|
|
63
63
|
Completed setup credentials remain closed. Known package/workspace/provider conflicts are diagnosed before
|
|
64
64
|
writes; support ranges do not trigger automatic framework or package-manager upgrades.
|
|
65
65
|
|
|
66
|
+
## Controlled accountless start
|
|
67
|
+
|
|
68
|
+
The T8 candidate includes `setup start`; the hosted endpoint is closed by default until Batch 3 acceptance.
|
|
69
|
+
Use only the exact candidate version provided for an enabled environment and an explicit user request:
|
|
70
|
+
|
|
71
|
+
Before starting, add `.siteplane/credentials.json` to the repository’s `.gitignore`. Start rejects tracked or
|
|
72
|
+
unprotected credentials before any provisioning request.
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
npx -y siteplane@0.1.51 setup start --modules editing --instructions-file instructions.txt
|
|
76
|
+
npx -y siteplane@0.1.51 setup context
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Start performs read-only preflight and saves the installation key and original request privately before the
|
|
80
|
+
first provisioning call. Select `editing,analytics` only when explicitly requested. Retry in the same directory
|
|
81
|
+
with the same request after interruption; configuration without credentials produces a diagnosis, never a silent
|
|
82
|
+
replacement project. The returned task carries the provisional assignment and deadline. Guest review and claim
|
|
83
|
+
remain later Batch 3 work; this entry grants no publication or measurement activation.
|
|
84
|
+
|
|
66
85
|
## Approved fields
|
|
67
86
|
|
|
68
87
|
Run the exact command from Siteplane's compact apply prompt. It authenticates
|