@dropthis/cli 0.1.5
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 +171 -0
- package/dist/cli.cjs +1489 -0
- package/dist/cli.cjs.map +1 -0
- package/node_modules/@dropthis/node/README.md +90 -0
- package/node_modules/@dropthis/node/dist/index.cjs +1010 -0
- package/node_modules/@dropthis/node/dist/index.cjs.map +1 -0
- package/node_modules/@dropthis/node/dist/index.d.cts +408 -0
- package/node_modules/@dropthis/node/dist/index.d.ts +408 -0
- package/node_modules/@dropthis/node/dist/index.mjs +969 -0
- package/node_modules/@dropthis/node/dist/index.mjs.map +1 -0
- package/node_modules/@dropthis/node/package.json +55 -0
- package/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
- package/node_modules/@nodelib/fs.scandir/README.md +171 -0
- package/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
- package/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
- package/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
- package/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
- package/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
- package/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
- package/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
- package/node_modules/@nodelib/fs.scandir/package.json +44 -0
- package/node_modules/@nodelib/fs.stat/LICENSE +21 -0
- package/node_modules/@nodelib/fs.stat/README.md +126 -0
- package/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- package/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
- package/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
- package/node_modules/@nodelib/fs.stat/out/index.js +26 -0
- package/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- package/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
- package/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
- package/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
- package/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
- package/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
- package/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- package/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.stat/package.json +37 -0
- package/node_modules/@nodelib/fs.walk/LICENSE +21 -0
- package/node_modules/@nodelib/fs.walk/README.md +215 -0
- package/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
- package/node_modules/@nodelib/fs.walk/out/index.js +34 -0
- package/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- package/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
- package/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
- package/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
- package/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
- package/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
- package/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
- package/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
- package/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- package/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
- package/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
- package/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
- package/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- package/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
- package/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
- package/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
- package/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
- package/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
- package/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- package/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.walk/package.json +44 -0
- package/node_modules/braces/LICENSE +21 -0
- package/node_modules/braces/README.md +586 -0
- package/node_modules/braces/index.js +170 -0
- package/node_modules/braces/lib/compile.js +60 -0
- package/node_modules/braces/lib/constants.js +57 -0
- package/node_modules/braces/lib/expand.js +113 -0
- package/node_modules/braces/lib/parse.js +331 -0
- package/node_modules/braces/lib/stringify.js +32 -0
- package/node_modules/braces/lib/utils.js +122 -0
- package/node_modules/braces/package.json +77 -0
- package/node_modules/fast-glob/LICENSE +21 -0
- package/node_modules/fast-glob/README.md +830 -0
- package/node_modules/fast-glob/out/index.d.ts +40 -0
- package/node_modules/fast-glob/out/index.js +102 -0
- package/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
- package/node_modules/fast-glob/out/managers/tasks.js +110 -0
- package/node_modules/fast-glob/out/providers/async.d.ts +9 -0
- package/node_modules/fast-glob/out/providers/async.js +23 -0
- package/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
- package/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
- package/node_modules/fast-glob/out/providers/filters/entry.d.ts +17 -0
- package/node_modules/fast-glob/out/providers/filters/entry.js +85 -0
- package/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
- package/node_modules/fast-glob/out/providers/filters/error.js +15 -0
- package/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
- package/node_modules/fast-glob/out/providers/matchers/matcher.js +45 -0
- package/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
- package/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
- package/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
- package/node_modules/fast-glob/out/providers/provider.js +48 -0
- package/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
- package/node_modules/fast-glob/out/providers/stream.js +31 -0
- package/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
- package/node_modules/fast-glob/out/providers/sync.js +23 -0
- package/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
- package/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
- package/node_modules/fast-glob/out/readers/async.d.ts +10 -0
- package/node_modules/fast-glob/out/readers/async.js +35 -0
- package/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
- package/node_modules/fast-glob/out/readers/reader.js +33 -0
- package/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
- package/node_modules/fast-glob/out/readers/stream.js +55 -0
- package/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
- package/node_modules/fast-glob/out/readers/sync.js +43 -0
- package/node_modules/fast-glob/out/settings.d.ts +164 -0
- package/node_modules/fast-glob/out/settings.js +59 -0
- package/node_modules/fast-glob/out/types/index.d.ts +31 -0
- package/node_modules/fast-glob/out/types/index.js +2 -0
- package/node_modules/fast-glob/out/utils/array.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/array.js +22 -0
- package/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/errno.js +7 -0
- package/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
- package/node_modules/fast-glob/out/utils/fs.js +19 -0
- package/node_modules/fast-glob/out/utils/index.d.ts +8 -0
- package/node_modules/fast-glob/out/utils/index.js +17 -0
- package/node_modules/fast-glob/out/utils/path.d.ts +13 -0
- package/node_modules/fast-glob/out/utils/path.js +68 -0
- package/node_modules/fast-glob/out/utils/pattern.d.ts +49 -0
- package/node_modules/fast-glob/out/utils/pattern.js +206 -0
- package/node_modules/fast-glob/out/utils/stream.d.ts +4 -0
- package/node_modules/fast-glob/out/utils/stream.js +17 -0
- package/node_modules/fast-glob/out/utils/string.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/string.js +11 -0
- package/node_modules/fast-glob/package.json +81 -0
- package/node_modules/fastq/LICENSE +13 -0
- package/node_modules/fastq/README.md +310 -0
- package/node_modules/fastq/SECURITY.md +15 -0
- package/node_modules/fastq/bench.js +66 -0
- package/node_modules/fastq/eslint.config.js +11 -0
- package/node_modules/fastq/example.js +14 -0
- package/node_modules/fastq/example.mjs +9 -0
- package/node_modules/fastq/index.d.ts +59 -0
- package/node_modules/fastq/package.json +49 -0
- package/node_modules/fastq/queue.js +346 -0
- package/node_modules/fastq/test/example.ts +83 -0
- package/node_modules/fastq/test/promise.js +325 -0
- package/node_modules/fastq/test/test.js +733 -0
- package/node_modules/fastq/test/tsconfig.json +11 -0
- package/node_modules/fill-range/LICENSE +21 -0
- package/node_modules/fill-range/README.md +237 -0
- package/node_modules/fill-range/index.js +248 -0
- package/node_modules/fill-range/package.json +74 -0
- package/node_modules/glob-parent/LICENSE +15 -0
- package/node_modules/glob-parent/README.md +137 -0
- package/node_modules/glob-parent/index.js +42 -0
- package/node_modules/glob-parent/package.json +48 -0
- package/node_modules/ignore/LICENSE-MIT +21 -0
- package/node_modules/ignore/README.md +452 -0
- package/node_modules/ignore/index.d.ts +81 -0
- package/node_modules/ignore/index.js +784 -0
- package/node_modules/ignore/legacy.js +681 -0
- package/node_modules/ignore/package.json +87 -0
- package/node_modules/is-extglob/LICENSE +21 -0
- package/node_modules/is-extglob/README.md +107 -0
- package/node_modules/is-extglob/index.js +20 -0
- package/node_modules/is-extglob/package.json +69 -0
- package/node_modules/is-glob/LICENSE +21 -0
- package/node_modules/is-glob/README.md +206 -0
- package/node_modules/is-glob/index.js +150 -0
- package/node_modules/is-glob/package.json +81 -0
- package/node_modules/is-number/LICENSE +21 -0
- package/node_modules/is-number/README.md +187 -0
- package/node_modules/is-number/index.js +18 -0
- package/node_modules/is-number/package.json +82 -0
- package/node_modules/merge2/LICENSE +21 -0
- package/node_modules/merge2/README.md +144 -0
- package/node_modules/merge2/index.js +144 -0
- package/node_modules/merge2/package.json +43 -0
- package/node_modules/micromatch/LICENSE +21 -0
- package/node_modules/micromatch/README.md +1024 -0
- package/node_modules/micromatch/index.js +474 -0
- package/node_modules/micromatch/package.json +119 -0
- package/node_modules/mime-db/HISTORY.md +541 -0
- package/node_modules/mime-db/LICENSE +23 -0
- package/node_modules/mime-db/README.md +109 -0
- package/node_modules/mime-db/db.json +9342 -0
- package/node_modules/mime-db/index.js +12 -0
- package/node_modules/mime-db/package.json +56 -0
- package/node_modules/mime-types/HISTORY.md +421 -0
- package/node_modules/mime-types/LICENSE +23 -0
- package/node_modules/mime-types/README.md +126 -0
- package/node_modules/mime-types/index.js +211 -0
- package/node_modules/mime-types/mimeScore.js +52 -0
- package/node_modules/mime-types/package.json +45 -0
- package/node_modules/picomatch/LICENSE +21 -0
- package/node_modules/picomatch/README.md +716 -0
- package/node_modules/picomatch/index.js +3 -0
- package/node_modules/picomatch/lib/constants.js +184 -0
- package/node_modules/picomatch/lib/parse.js +1392 -0
- package/node_modules/picomatch/lib/picomatch.js +342 -0
- package/node_modules/picomatch/lib/scan.js +391 -0
- package/node_modules/picomatch/lib/utils.js +64 -0
- package/node_modules/picomatch/package.json +81 -0
- package/node_modules/queue-microtask/LICENSE +20 -0
- package/node_modules/queue-microtask/README.md +90 -0
- package/node_modules/queue-microtask/index.d.ts +2 -0
- package/node_modules/queue-microtask/index.js +9 -0
- package/node_modules/queue-microtask/package.json +55 -0
- package/node_modules/reusify/.github/dependabot.yml +7 -0
- package/node_modules/reusify/.github/workflows/ci.yml +96 -0
- package/node_modules/reusify/LICENSE +22 -0
- package/node_modules/reusify/README.md +139 -0
- package/node_modules/reusify/SECURITY.md +15 -0
- package/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
- package/node_modules/reusify/benchmarks/fib.js +13 -0
- package/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
- package/node_modules/reusify/eslint.config.js +14 -0
- package/node_modules/reusify/package.json +50 -0
- package/node_modules/reusify/reusify.d.ts +14 -0
- package/node_modules/reusify/reusify.js +33 -0
- package/node_modules/reusify/test.js +66 -0
- package/node_modules/reusify/tsconfig.json +11 -0
- package/node_modules/run-parallel/LICENSE +20 -0
- package/node_modules/run-parallel/README.md +85 -0
- package/node_modules/run-parallel/index.js +51 -0
- package/node_modules/run-parallel/package.json +58 -0
- package/node_modules/to-regex-range/LICENSE +21 -0
- package/node_modules/to-regex-range/README.md +305 -0
- package/node_modules/to-regex-range/index.js +288 -0
- package/node_modules/to-regex-range/package.json +88 -0
- package/package.json +53 -0
package/README.md
ADDED
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# Dropthis CLI
|
|
2
|
+
|
|
3
|
+
Official CLI for Dropthis. Publish a file, folder, URL, stdin, or generated artifact and get a stable URL back.
|
|
4
|
+
|
|
5
|
+
## For AI Agents
|
|
6
|
+
|
|
7
|
+
Read [SKILL.md](./SKILL.md) and follow the instructions to publish with dropthis.
|
|
8
|
+
|
|
9
|
+
## For Humans
|
|
10
|
+
|
|
11
|
+
1. Copy the instruction above and send it to your AI agent.
|
|
12
|
+
2. Your agent will install dropthis and ask for your email.
|
|
13
|
+
3. Check your inbox for an OTP code and give it to your agent.
|
|
14
|
+
4. Done — your agent can now publish pages for you.
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install -g dropthis
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Authentication
|
|
23
|
+
|
|
24
|
+
The CLI resolves credentials in this order:
|
|
25
|
+
|
|
26
|
+
1. `--api-key sk_...`
|
|
27
|
+
2. `DROPTHIS_API_KEY`
|
|
28
|
+
3. Stored credential from `dropthis login`
|
|
29
|
+
|
|
30
|
+
For local development, override the API URL with `DROPTHIS_API_URL` or `--api-url`.
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
DROPTHIS_API_KEY=sk_live_... dropthis whoami --json
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Login
|
|
37
|
+
|
|
38
|
+
Production login uses email OTP. Verification creates a durable API key through the SDK and stores it securely by default.
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
dropthis login request --email user@example.com --json
|
|
42
|
+
dropthis login verify --email user@example.com --otp 123456 --json
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
You can also verify in one command after an OTP has already been requested:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
dropthis login --email user@example.com --otp 123456 --json
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Use `--insecure-storage` only when you explicitly accept plaintext credential storage.
|
|
52
|
+
|
|
53
|
+
## Publish
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
dropthis publish ./site --json
|
|
57
|
+
dropthis publish ./site --url
|
|
58
|
+
dropthis publish https://example.com/demo.html --json
|
|
59
|
+
dropthis publish - --content-type text/html --path index.html --json
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## What You Can Publish
|
|
63
|
+
|
|
64
|
+
Dropthis can publish single files, static sites, generated HTML, URLs, piped stdin, and multi-file bundles.
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
# A single HTML file
|
|
68
|
+
dropthis publish report.html --title "Q4 Report" --json
|
|
69
|
+
|
|
70
|
+
# A static site or app build
|
|
71
|
+
dropthis publish ./dist --entry index.html --url
|
|
72
|
+
|
|
73
|
+
# Multiple files as one bundled drop
|
|
74
|
+
dropthis publish index.html styles.css app.js --json
|
|
75
|
+
|
|
76
|
+
# A URL fetched by Dropthis
|
|
77
|
+
dropthis publish https://example.com/demo.html --json
|
|
78
|
+
|
|
79
|
+
# Generated HTML from stdin
|
|
80
|
+
echo "<h1>Hello from Dropthis</h1>" | dropthis publish - --content-type text/html --path index.html --url
|
|
81
|
+
|
|
82
|
+
# Generated JSON from stdin
|
|
83
|
+
printf '{"status":"ok"}' | dropthis publish - --content-type application/json --path status.json --json
|
|
84
|
+
|
|
85
|
+
# Validate before publishing
|
|
86
|
+
dropthis publish ./dist --dry-run
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
For files and folders, content types are detected automatically. Use `--content-type` and `--path` when publishing stdin or generated content so the drop has the right MIME type and filename.
|
|
90
|
+
|
|
91
|
+
`--url` prints only the URL and takes precedence over JSON, quiet mode, and TTY detection.
|
|
92
|
+
|
|
93
|
+
`--dry-run` validates everything (auth, input detection, file collection) without calling the API. Outputs what would be published as JSON.
|
|
94
|
+
|
|
95
|
+
Local files, folders, large stdin content, and explicit file inputs publish through staged uploads in the SDK. If `--idempotency-key` is omitted, content publish/update commands generate one automatically.
|
|
96
|
+
|
|
97
|
+
Common publish options:
|
|
98
|
+
|
|
99
|
+
```txt
|
|
100
|
+
--title <title>
|
|
101
|
+
--visibility <public|unlisted>
|
|
102
|
+
--password <password>
|
|
103
|
+
--no-password
|
|
104
|
+
--noindex
|
|
105
|
+
--index
|
|
106
|
+
--expires-at <datetime>
|
|
107
|
+
--metadata <json>
|
|
108
|
+
--metadata-file <path>
|
|
109
|
+
--entry <path>
|
|
110
|
+
--content-type <mime>
|
|
111
|
+
--path <path>
|
|
112
|
+
--idempotency-key <key>
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Commands
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
dropthis publish <input>
|
|
119
|
+
dropthis update <drop-id> [input]
|
|
120
|
+
dropthis drops list --json
|
|
121
|
+
dropthis drops get <drop-id> --json
|
|
122
|
+
dropthis drops update <drop-id> --title "New title" --json
|
|
123
|
+
dropthis drops delete <drop-id> --yes --json
|
|
124
|
+
dropthis api-keys create --label CI --json
|
|
125
|
+
dropthis api-keys list --json
|
|
126
|
+
dropthis api-keys delete <key-id> --yes --json
|
|
127
|
+
dropthis account get --json
|
|
128
|
+
dropthis whoami --json
|
|
129
|
+
dropthis doctor --json
|
|
130
|
+
dropthis commands --json
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
## Output Modes
|
|
134
|
+
|
|
135
|
+
Interactive TTY output is human-friendly. CI, pipes, non-TTY stdout, `--json`, and `--quiet` use JSON. Success writes to stdout. Errors write to stderr.
|
|
136
|
+
|
|
137
|
+
Machine errors use stable exit codes:
|
|
138
|
+
|
|
139
|
+
```txt
|
|
140
|
+
0 success
|
|
141
|
+
1 API or generic error
|
|
142
|
+
2 invalid usage
|
|
143
|
+
3 auth required
|
|
144
|
+
4 local input error
|
|
145
|
+
5 network error
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
## Examples
|
|
149
|
+
|
|
150
|
+
The `examples/` directory contains ready-to-publish HTML files you can try:
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
# Publish the multi-step waitlist form
|
|
154
|
+
dropthis publish examples/multi-step-form.html --title "Waitlist Form" --url
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
| File | Description | Live Demo |
|
|
158
|
+
|------|-------------|-----------|
|
|
159
|
+
| `multi-step-form.html` | Tally-style 4-step waitlist form with validation, transitions, and confetti | [View](https://d4b0mqc.dropthis.app/) |
|
|
160
|
+
|
|
161
|
+
## Agent And CI Examples
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
dropthis commands --json
|
|
165
|
+
dropthis publish ./dist --json
|
|
166
|
+
dropthis update drop_01hzz00000000000000000 ./dist --if-revision 1 --json
|
|
167
|
+
dropthis update drop_01hzz00000000000000000 --title "Final" --json
|
|
168
|
+
dropthis deployments list drop_01hzz00000000000000000 --json
|
|
169
|
+
dropthis deployments get drop_01hzz00000000000000000 dep_01hzz00000000000000000 --json
|
|
170
|
+
DROPTHIS_API_KEY=$DROPTHIS_API_KEY dropthis doctor --json
|
|
171
|
+
```
|