-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathwrangler.ts
499 lines (497 loc) · 12.7 KB
/
wrangler.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
// Options used commonly
const OPTION_CONFIG: Fig.Option = {
name: ["-c", "--config"],
args: {
name: "wrangler.toml",
template: "filepaths",
},
description: "Path to configuration file [default: wrangler.toml]",
};
const OPTION_ENV: Fig.Option = {
name: ["-e", "--env"],
args: {
name: "environment",
},
description: "Environment to perform a command on",
};
const OPTION_HELP: Fig.Option = {
name: ["-h", "--help"],
description: "Prints help information",
};
const OPTION_VERBOSE: Fig.Option = {
name: "--verbose",
description: "Toggle verbose output (when applicable)",
};
/* DOCS:
https://developers.cloudflare.com/workers/cli-wrangler/commands
*/
const completionSpec: Fig.Spec = {
name: "wrangler",
description: "Wrangler CLI for Cloudflare Workers",
subcommands: [
/* GENERATE */
{
name: "generate",
args: [
{
name: "name",
isOptional: true,
description: "The name of your worker! [default: worker]",
},
{
name: "template",
isOptional: true,
description: `A link to a GitHub template! Defaults to
https://github.com/cloudflare/worker-template`,
},
],
options: [
OPTION_CONFIG,
OPTION_ENV,
OPTION_HELP,
OPTION_VERBOSE,
{
name: ["-s", "--site"],
args: {
name: "site",
isOptional: true,
},
description: `Initializes a Workers Sites project. Overrides 'type'
and 'template'`,
},
{
name: ["-t", "--type"],
args: {
name: "type",
isOptional: true,
},
description: "The type of project you want generated",
},
],
description: "Generate a new worker project",
},
/* KV:NAMESPACE */
{
name: "kv:namespace",
description: "Interact with your Workers KV Namespaces",
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
subcommands: [
{
name: "create",
description: "Create a new namespace",
args: {
name: "namespace",
},
},
{
name: "delete",
description: "Delete namespace",
},
{
name: "list",
description: "List all namespaces on your Cloudflare account",
},
],
},
/* KV:KEY */
{
name: "kv:key",
description: "Individually manage Workers KV key-value",
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
subcommands: [
{
name: "delete",
description: "Delete a key and its value from a namespace",
args: {
name: "key",
description: "Key whose value to delete",
},
options: [
{
name: ["-b", "--binding"],
args: {
name: "binding",
},
description:
"The binding of the namespace this action applies to",
},
{
name: ["-n", "--namespace-id"],
args: {
name: "namespace-id",
},
description: "The ID of the namespace this action applies to",
},
],
},
{
name: "get",
description: "Get a key's value from a namespace",
args: {
name: "key",
},
},
{
name: "help",
description:
"Prints this message or the help of the given subcommand(s)",
},
{
name: "list",
description: "List all keys in a namespace. Produces JSON output",
},
{
name: "put",
description: "Put a key-value pair into a namespace",
args: {
name: "key",
},
},
],
},
/* KV:BULK */
{
name: "kv:bulk",
description: "Interact with multiple Workers KV key-value pairs at once",
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
subcommands: [
{
name: "delete",
description: "Delete multiple keys and their values from a namespace",
args: {
name: "keys",
},
},
{
name: "help",
description:
"Prints this message or the help of the given subcommand(s)",
},
{
name: "put",
description: "Upload multiple key-value pairs to a namespace",
args: {
name: "keys",
template: "filepaths",
},
},
],
},
/* ROUTE */
{
name: "route",
description: "List or delete worker routes",
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
subcommands: [
{
name: "delete",
description: "Delete a route by ID",
args: {
name: "routeId",
},
},
{
name: "list",
description: "List all routes associated with a zone (outputs json)",
},
],
},
/* SECRET */
{
name: "secret",
description:
"Generate a secret that can be referenced in the worker script",
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
subcommands: [
{
name: "delete",
description: "Delete a secret variable from a script",
args: {
name: "secret",
},
},
{
name: "list",
description: "List all secrets for a script",
},
{
name: "put",
description: "Create or update a secret variable for a script",
args: {
name: "secret",
},
},
],
},
/* INIT */
{
name: "init",
description: "Create a wrangler.toml for an existing project",
args: {
name: "name",
description: "The name of your worker! [default: worker]",
isOptional: true,
},
options: [
OPTION_CONFIG,
OPTION_ENV,
OPTION_HELP,
OPTION_VERBOSE,
{
name: ["-s", "--site"],
description: `Initializes a Workers Sites project. Overrides 'type'
and 'template'`,
},
{
name: ["-t", "--type"],
args: {
name: "type",
isOptional: true,
},
description: "The type of project you want generated",
},
],
},
/* BUILD */
{
name: "build",
description: "Build your worker",
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
},
/* PREVIEW */
{
name: "preview",
description: "Preview your code temporarily on cloudflareworkers.com",
args: [
{
name: "method",
isOptional: true,
suggestions: ["get", "post"],
description: `Type of request to preview your worker with (get, post)
[default: get]`,
},
{
name: "body",
isOptional: true,
description: "Body string to post to your preview worker request",
},
],
options: [
OPTION_CONFIG,
OPTION_ENV,
OPTION_HELP,
OPTION_VERBOSE,
{
name: "--headless",
description: "Don't open the browser on preview",
},
{
name: "--watch",
description: `Watch your project for changes and update the preview
automagically`,
},
{
name: ["-u", "--url"],
description: `URL to open in the worker preview
[default: https://example.com]`,
},
],
},
/* DEV */
{
name: "dev",
description: "Start a local server for developing your worker",
options: [
OPTION_CONFIG,
OPTION_ENV,
{
name: ["-h", "--host"],
args: {
name: "hostname",
},
description: `Host to forward requests to, defaults to the zone of
project or to tutorial.cloudflareworkers.com if unauthenticated`,
},
{
name: ["-i", "--ip"],
args: {
name: "ip_address",
},
description: "IP to listen on. Defaults to 127.0.0.1",
},
{
name: ["-p", "--port"],
args: {
name: "port",
},
description: "Port to listen on. Defaults to 8787",
},
],
},
/* PUBLISH */
{
name: "publish",
description: "Publish your worker to the orange cloud",
args: {
name: "output",
suggestions: ["json"],
description: "[possible values: json]",
isOptional: true,
},
options: [
OPTION_CONFIG,
OPTION_ENV,
OPTION_HELP,
OPTION_VERBOSE,
{
name: "--delete-class",
args: {
name: "delete-class",
},
description:
"Delete all durable objects associated with a class in your script",
},
{
name: "--new-class",
args: {
name: "new-class",
},
description:
"Allow durable objects to be created from a class in your script",
},
{
name: "--rename-class",
args: {
name: "rename-class new-name",
},
description: "Rename a durable object class in your script",
},
{
name: "--transfer-class",
args: {
name: "transfer-class",
},
description:
"Transfer all durable objects associated with a class in another script to a class in this script",
},
],
},
/* CONFIG */
{
name: "config",
description:
"Authenticate Wrangler with a Cloudflare API Token or Global API Key",
options: [
OPTION_CONFIG,
OPTION_ENV,
OPTION_HELP,
OPTION_VERBOSE,
{
name: "--api-key",
description:
"Use an email and global API key for authentication. This is not recommended; use API tokens (the default) if possible",
},
{
name: "--no-verify",
description:
"Do not verify provided credentials before writing out Wrangler config file",
},
],
},
/* SUBDOMAIN */
{
name: "subdomain",
description: "Configure your workers.dev subdomain",
args: {
name: "name",
description: "The subdomain on workers.dev you'd like to reserve",
},
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
},
/* WHOAMI */
{
name: "whoami",
description: "Retrieve your user info and test your auth config",
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
},
/* TAIL */
{
name: "tail",
description: "Aggregate logs from production worker",
options: [
OPTION_CONFIG,
OPTION_ENV,
OPTION_HELP,
OPTION_VERBOSE,
{
name: ["-f", "--format"],
args: {
name: "format",
suggestions: ["json", "pretty"],
},
description:
"Specify an output format [default: json] [possible values: json, pretty]",
},
{
name: "--metrics",
args: {
name: "metrics-port",
},
description:
"Provides endpoint for cloudflared metrics. Used to retrieve tunnel url",
},
{
name: ["-p", "--port"],
args: {
name: "port",
},
description: "Port to accept tail log requests",
},
],
},
/* LOGIN */
{
name: "login",
description:
"Authenticate Wrangler with your Cloudflare username and password",
options: [OPTION_CONFIG, OPTION_ENV, OPTION_HELP, OPTION_VERBOSE],
},
/* REPORT */
{
name: "report",
description: "Report an error caught by Wrangler to Cloudflare",
options: [
OPTION_CONFIG,
OPTION_ENV,
OPTION_HELP,
OPTION_VERBOSE,
{
name: "log",
args: {
name: "logfile",
template: "filepaths",
},
description:
"Specifies a log to report (e.g. --log=1619728882567.log)",
},
],
},
/* HELP */
{
name: "help",
description: "Prints this message or the help of the given subcommand(s)",
args: {
name: "command",
},
},
],
options: [
OPTION_HELP,
OPTION_VERBOSE,
{
name: ["-V", "--version"],
description: "Prints version information",
},
],
};
export default completionSpec;