siteplane 0.1.39 → 0.1.41
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 +15 -0
- package/dist/bin/siteplane.js +237 -300
- package/dist/index.js +204 -159
- package/dist/next.js +127 -82
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
3
3
|
Public Siteplane CLI for connected-site setup, field synchronization, Analytics
|
|
4
4
|
instrumentation and Booking integration.
|
|
5
5
|
|
|
6
|
+
## Initial setup
|
|
7
|
+
|
|
8
|
+
Copy the setup prompt in Siteplane, then run its exact one-time command in the
|
|
9
|
+
website repository:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx -y siteplane@0.1.41 init --setup-token <one-time-setup-grant>
|
|
13
|
+
npx siteplane setup context
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
`init` exchanges the short-lived grant for the run-bound Project Connection and
|
|
17
|
+
stores it only in the ignored `.siteplane/credentials.json`. No browser approval
|
|
18
|
+
is required. The same connection resumes the open setup and review corrections
|
|
19
|
+
until the owner completes or revokes the setup.
|
|
20
|
+
|
|
6
21
|
## Approved fields
|
|
7
22
|
|
|
8
23
|
Run the exact command from Siteplane's compact apply prompt. It authenticates
|