domani-cli 0.4.45 → 0.4.46
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 +5 -0
- package/dist/domani.cjs +120 -120
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,6 +103,11 @@ domani email forward hello@startup.dev --forward-to me@gmail.com
|
|
|
103
103
|
domani email webhook hello@startup.dev --url https://myapp.dev/hooks/email \
|
|
104
104
|
--authorization-env CURSOR_AUTH
|
|
105
105
|
|
|
106
|
+
# Provision domain + mailbox + authenticated event webhook in one call.
|
|
107
|
+
# The secret stays in the environment; only its variable name is in argv.
|
|
108
|
+
AGENT_AUTH="Bearer sender-key" domani provision agent.dev \
|
|
109
|
+
--webhook https://agent.example/inbox --authorization-env AGENT_AUTH
|
|
110
|
+
|
|
106
111
|
# Export DNS records before making changes
|
|
107
112
|
domani dns startup.dev snapshot
|
|
108
113
|
domani dns startup.dev set TXT @ "v=spf1 include:_spf.google.com ~all"
|