posthorn 0.2.5 → 0.2.6
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 +11 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,13 +62,22 @@ stored locally, so you can stop and continue any time.
|
|
|
62
62
|
## The external/manual steps (things that happen OUTSIDE the CLI)
|
|
63
63
|
|
|
64
64
|
These are the steps you must GUIDE THE USER through in their browser. Give exact
|
|
65
|
-
click-by-click instructions.
|
|
65
|
+
click-by-click instructions. Tell the user up front that these are one-time
|
|
66
|
+
setup steps; once done, they never repeat them. Future domains and mailboxes
|
|
67
|
+
are fully automated (the only exceptions: DKIM is once per domain, delegation
|
|
68
|
+
is once per Workspace org).
|
|
66
69
|
|
|
67
70
|
### Cloudflare API token (one-time, for "buy new" or "own Cloudflare" domains)
|
|
68
71
|
- dash.cloudflare.com/profile/api-tokens → Create Token → Custom Token
|
|
69
|
-
- Permissions: Account>
|
|
72
|
+
- Permissions: Account>Account Settings>Read, Account>Registrar: Domains>Admin,
|
|
70
73
|
Zone>Zone>Edit, Zone>DNS>Edit. Resources: Include All.
|
|
74
|
+
- Do NOT add Billing permissions; they are not needed. Domain purchases charge
|
|
75
|
+
the payment method already on the Cloudflare account, which is a dashboard
|
|
76
|
+
setting, not a token permission.
|
|
71
77
|
- Then: `posthorn accounts cloudflare <token>`
|
|
78
|
+
- This token is only for Cloudflare (domains and DNS). Google Workspace is NOT
|
|
79
|
+
connected with this token; it has its own separate one-time step below
|
|
80
|
+
(domain-wide delegation, no token involved).
|
|
72
81
|
- For domain PURCHASES, the user also needs a payment method on their Cloudflare
|
|
73
82
|
account (they pay Cloudflare directly; Posthorn never bills for domains).
|
|
74
83
|
|
package/dist/index.js
CHANGED
|
@@ -581,7 +581,7 @@ function guide() {
|
|
|
581
581
|
|
|
582
582
|
// src/index.ts
|
|
583
583
|
var program = new Command();
|
|
584
|
-
program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.
|
|
584
|
+
program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.6");
|
|
585
585
|
program.addHelpText("after", `
|
|
586
586
|
Agents: run 'posthorn guide' first for the full workflow playbook.
|
|
587
587
|
|