ordinary 0.11.1

Ordinary CLI
Documentation
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
# Print an optspec for argparse to handle cmd's options that are independent of any subcommand.
function __fish_ordinary_global_optspecs
    string join \n v/verbose q/quiet pretty h/help V/version
end

function __fish_ordinary_needs_command
    # Figure out if the current invocation already has a command.
    set -l cmd (commandline -opc)
    set -e cmd[1]
    argparse -s (__fish_ordinary_global_optspecs) -- $cmd 2>/dev/null
    or return
    if set -q argv[1]
        # Also print the command, so this can be used to figure out what it is.
        echo $argv[1]
        return 1
    end
    return 0
end

function __fish_ordinary_using_subcommand
    set -l cmd (__fish_ordinary_needs_command)
    test -z "$cmd"
    and return 1
    contains -- $cmd[1] $argv
end

complete -c ordinary -n "__fish_ordinary_needs_command" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_needs_command" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_needs_command" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_needs_command" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_needs_command" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "app" -d 'manage applications running on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "ssg" -d 'manage static site configuration'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "host" -d 'manage an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "doctor" -d 'ensure that all the correct system components are installed'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "dr" -d 'ensure that all the correct system components are installed'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "utils" -d 'utility functions for aiding project development'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "new" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "create" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "init" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "build" -d 'build your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "start" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "run" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "preview" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "publish" -d 'combines `build`, `deploy`, `assets write`, and `functions upload`'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "restart" -d 'restart a deployed/running instance of the application on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "assets" -d 'manage assets in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "account" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "accts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "acct" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "functions" -d 'manage functions on your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "fns" -d 'manage functions on your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "fn" -d 'manage functions on your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "function" -d 'manage functions on your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "database" -d 'manage database models in your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "db" -d 'manage database models in your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "secrets" -d 'manage secrets in your Ordinary application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "config" -d 'view and validate the app config'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from new" -l path -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from new" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from new" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from new" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from new" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from new" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from create" -l path -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from create" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from create" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from create" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from create" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from create" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from init" -l path -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from init" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from init" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from init" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from init" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from init" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from build" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from build" -s f -l force -d 'build project without checking the cache'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from build" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from build" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from build" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from build" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from build" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l provision -d 'what mode TLS certs should be provisioned in' -r -f -a "staging\t''
production\t''
localhost\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l port -d 'specify HTTP(s) port for server' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l redirect-port -d 'specify HTTP port for server when running in secure mode' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l log-ttl-hours -d 'max period of time logs are stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l log-rotation-file-size -d 'max size (in bytes) per log file' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l log-rotation-mins -d 'max amount of time a log file is appended to before being compressed and stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l redacted-header-hash -d '"none" | "blake2" | "blake3"' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l data-dir -d 'specify the data directory' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l stdio-logs-fmt -d 'how to format stdio logs' -r -f -a "concise\t''
pretty\t''
json\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l log-level -d 'base log level for every component' -r -f -a "error\t''
warn\t''
info\t''
debug\t''
trace\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l insecure -d 'run without HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l insecure-cookies -d 'run with insecure cookies'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l log-headers -d 'whether HTTP request and response headers are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l log-ips -d 'whether IP Addresses are logged with HTTP requests'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l danger-dns-no-verify -d 'set to `true` to bypass verification of proxy domain and CNAME DNS TXT records'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l stored-logs -d 'persists JSON formatted log lines to <data-dir>/logs/<domain>/'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l stdio-logs -d 'logs events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l journald-logs -d 'logs events to `journald` (only works on Linux distros that use `systemd`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l log-sizes -d 'whether storage and certain payload sizes are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l stdio-logs-timing -d 'whether span timing is logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -s d -l disable-defaults -d 'disables these defaults set for development: `--stdio-logs` `--stdio-logs-fmt concise` `--insecure` `--insecure-cookies`'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from start" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l provision -d 'what mode TLS certs should be provisioned in' -r -f -a "staging\t''
production\t''
localhost\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l port -d 'specify HTTP(s) port for server' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l redirect-port -d 'specify HTTP port for server when running in secure mode' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l log-ttl-hours -d 'max period of time logs are stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l log-rotation-file-size -d 'max size (in bytes) per log file' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l log-rotation-mins -d 'max amount of time a log file is appended to before being compressed and stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l redacted-header-hash -d '"none" | "blake2" | "blake3"' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l data-dir -d 'specify the data directory' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l stdio-logs-fmt -d 'how to format stdio logs' -r -f -a "concise\t''
pretty\t''
json\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l log-level -d 'base log level for every component' -r -f -a "error\t''
warn\t''
info\t''
debug\t''
trace\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l insecure -d 'run without HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l insecure-cookies -d 'run with insecure cookies'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l log-headers -d 'whether HTTP request and response headers are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l log-ips -d 'whether IP Addresses are logged with HTTP requests'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l danger-dns-no-verify -d 'set to `true` to bypass verification of proxy domain and CNAME DNS TXT records'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l stored-logs -d 'persists JSON formatted log lines to <data-dir>/logs/<domain>/'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l stdio-logs -d 'logs events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l journald-logs -d 'logs events to `journald` (only works on Linux distros that use `systemd`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l log-sizes -d 'whether storage and certain payload sizes are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l stdio-logs-timing -d 'whether span timing is logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -s d -l disable-defaults -d 'disables these defaults set for development: `--stdio-logs` `--stdio-logs-fmt concise` `--insecure` `--insecure-cookies`'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from run" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l provision -d 'what mode TLS certs should be provisioned in' -r -f -a "staging\t''
production\t''
localhost\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l port -d 'specify HTTP(s) port for server' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l redirect-port -d 'specify HTTP port for server when running in secure mode' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l log-ttl-hours -d 'max period of time logs are stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l log-rotation-file-size -d 'max size (in bytes) per log file' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l log-rotation-mins -d 'max amount of time a log file is appended to before being compressed and stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l redacted-header-hash -d '"none" | "blake2" | "blake3"' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l data-dir -d 'specify the data directory' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l stdio-logs-fmt -d 'how to format stdio logs' -r -f -a "concise\t''
pretty\t''
json\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l log-level -d 'base log level for every component' -r -f -a "error\t''
warn\t''
info\t''
debug\t''
trace\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l insecure -d 'run without HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l insecure-cookies -d 'run with insecure cookies'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l log-headers -d 'whether HTTP request and response headers are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l log-ips -d 'whether IP Addresses are logged with HTTP requests'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l danger-dns-no-verify -d 'set to `true` to bypass verification of proxy domain and CNAME DNS TXT records'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l stored-logs -d 'persists JSON formatted log lines to <data-dir>/logs/<domain>/'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l stdio-logs -d 'logs events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l journald-logs -d 'logs events to `journald` (only works on Linux distros that use `systemd`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l log-sizes -d 'whether storage and certain payload sizes are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l stdio-logs-timing -d 'whether span timing is logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -s d -l disable-defaults -d 'disables these defaults set for development: `--stdio-logs` `--stdio-logs-fmt concise` `--insecure` `--insecure-cookies`'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from preview" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -l host-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -s t -l tls-staging -d 'overrides if mode=production. does nothing if mode is localhost or staging'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -l no-seed -d 'if `true`, will not seed the app database on publish'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l host-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s j -l json-to-stdout -d 'whether the result of the operation should be printed to stdout formatted as JSON'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s t -l tls-staging -d 'overrides if mode=production. does nothing if mode is localhost or staging'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l host-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l host-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s j -l json-to-stdout -d 'whether the result of the operation should be printed to stdout formatted as JSON'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s t -l tls-staging -d 'overrides if mode=production. does nothing if mode is localhost or staging'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l host-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l host-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "sync" -d 'sync files, indexes and tables'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "list" -d 'list all log files'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "ls" -d 'list all log files'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "read" -d 'read one or all files to stdout'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "query" -d 'query logs with SQL'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "search" -d 'search the tantivy index'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -f -a "write" -d 'write assets to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -f -a "prune" -d 'prune all assets on the server that are not known locally'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -f -a "delete" -d 'deletes assets on the server'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -f -a "del" -d 'deletes assets on the server'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -f -a "list" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -f -a "ls" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -f -a "list" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -f -a "ls" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -f -a "list" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -f -a "ls" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -f -a "list" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -f -a "ls" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -f -a "add" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -f -a "create" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -f -a "new" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -f -a "build" -d 'build just the functions'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -f -a "upload" -d 'upload functions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -f -a "add" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -f -a "create" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -f -a "new" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -f -a "build" -d 'build just the functions'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -f -a "upload" -d 'upload functions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -f -a "add" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -f -a "create" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -f -a "new" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -f -a "build" -d 'build just the functions'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -f -a "upload" -d 'upload functions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -f -a "add" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -f -a "create" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -f -a "new" -d 'add a new function to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -f -a "build" -d 'build just the functions'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -f -a "upload" -d 'upload functions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -f -a "seed" -d 'seed the database if the `seed_path` is set'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -f -a "models"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -f -a "items" -d 'manage model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -f -a "seed" -d 'seed the database if the `seed_path` is set'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -f -a "models"
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -f -a "items" -d 'manage model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -f -a "store" -d 'store an application secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -f -a "view" -d 'view the config that will be produced and used by operations that depend on its assembled state'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -f -a "validate" -d 'validate the existing config in an assembled state'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "new" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "build" -d 'build your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "start" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "publish" -d 'combines `build`, `deploy`, `assets write`, and `functions upload`'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "restart" -d 'restart a deployed/running instance of the application on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "assets" -d 'manage assets in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "functions" -d 'manage functions on your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "database" -d 'manage database models in your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "secrets" -d 'manage secrets in your Ordinary application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "config" -d 'view and validate the app config'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -f -a "new" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -f -a "create" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -f -a "init" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s c -l contacts -d 'contacts for Let\'s Encrypt (auto-TLS) [source](https://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s e -l error-page -d 'include generated 404.html as error page'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s s -l inline-styles -d 'accommodate inline styles in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s r -l inline-scripts -d 'accommodate inline scripts in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s m -l inline-images -d 'accommodate inline images in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s c -l contacts -d 'contacts for Let\'s Encrypt (auto-TLS) [source](https://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s e -l error-page -d 'include generated 404.html as error page'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s s -l inline-styles -d 'accommodate inline styles in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s r -l inline-scripts -d 'accommodate inline scripts in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s m -l inline-images -d 'accommodate inline images in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s c -l contacts -d 'contacts for Let\'s Encrypt (auto-TLS) [source](https://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s e -l error-page -d 'include generated 404.html as error page'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s s -l inline-styles -d 'accommodate inline styles in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s r -l inline-scripts -d 'accommodate inline scripts in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s m -l inline-images -d 'accommodate inline images in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from help" -f -a "new" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -l host-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "metrics" -d 'get proxied service metrics'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "accounts" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "account" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "accts" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "acct" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "moderation" -d 'tools for moderation'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs accounts account accts acct moderation help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from info" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from info" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from info" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from info" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from info" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -s s -l service -d 'name of the service that you\'d like to retrieve metrics for' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -f -a "sync" -d 'sync files, indexes and tables'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -f -a "list" -d 'list all log files'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -f -a "ls" -d 'list all log files'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -f -a "read" -d 'read one or all files to stdout'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -f -a "query" -d 'query logs with SQL'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -f -a "search" -d 'search the tantivy index'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from moderation" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from moderation" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from moderation" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from moderation" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from moderation" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from moderation" -f -a "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from moderation" -f -a "unlock" -d 'unlock resources upon resolution'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from moderation" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from help" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from help" -f -a "metrics" -d 'get proxied service metrics'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from help" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from help" -f -a "accounts" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from help" -f -a "moderation" -d 'tools for moderation'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s f -l fix -d 'auto fix installs' -r -f -a "all\t''
rust\t''
wasm\t''
c\t''
go\t''
js\t''
exiftool\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -s f -l fix -d 'auto fix installs' -r -f -a "all\t''
rust\t''
wasm\t''
c\t''
go\t''
js\t''
exiftool\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "ts" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "js" -d 'utilities for managing JavaScript/TypeScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "md" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "qr-code" -d 'tool for generating QR codes'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "qr" -d 'tool for generating QR codes'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif qr-code qr help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l v -d 'uuid version' -r -f -a "4\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s u -l unit -d 'unit of time' -r -f -a "seconds\t''
millis\t''
micros\t''
nanos\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s f -l fmt -d 'formatting (uses `time` crate <https://time-rs.github.io/book/api/format-description.html>)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -s u -l unit -d 'unit of time' -r -f -a "seconds\t''
millis\t''
micros\t''
nanos\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -s f -l fmt -d 'formatting (uses `time` crate <https://time-rs.github.io/book/api/format-description.html>)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -f -a "minify" -d 'minify HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -f -a "min" -d 'minify HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -f -a "csp-hashes" -d 'generate hashes for a Content-Security-Policy based on an HTML file and its inlined scripts/styles'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -f -a "minify" -d 'minify CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -f -a "min" -d 'minify CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -f -a "minify" -d 'minify JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -f -a "min" -d 'minify JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -f -a "to-html" -d 'process and place an .html file next to the referenced .md file'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -f -a "to-html" -d 'process and place an .html file next to the referenced .md file'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -f -a "tool" -d '[`exiftool`](https://exiftool.org) command'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr-code" -s o -l out -d 'where the file should be saved' -r -F
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr-code" -l fmt -d 'format of the output file' -r -f -a "svg\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr-code" -l dark -d 'will make the background black and code color white'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr-code" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr-code" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr-code" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr-code" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr-code" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr" -s o -l out -d 'where the file should be saved' -r -F
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr" -l fmt -d 'format of the output file' -r -f -a "svg\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr" -l dark -d 'will make the background black and code color white'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from qr" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "js" -d 'utilities for managing JavaScript/TypeScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "qr-code" -d 'tool for generating QR codes'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from app ssg host doctor utils help" -f -a "app" -d 'manage applications running on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from app ssg host doctor utils help" -f -a "ssg" -d 'manage static site configuration'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from app ssg host doctor utils help" -f -a "host" -d 'manage an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from app ssg host doctor utils help" -f -a "doctor" -d 'ensure that all the correct system components are installed'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from app ssg host doctor utils help" -f -a "utils" -d 'utility functions for aiding project development'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from app ssg host doctor utils help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "new" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "build" -d 'build your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "start" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "publish" -d 'combines `build`, `deploy`, `assets write`, and `functions upload`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "restart" -d 'restart a deployed/running instance of the application on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "assets" -d 'manage assets in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "functions" -d 'manage functions on your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "database" -d 'manage database models in your Ordinary app'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "secrets" -d 'manage secrets in your Ordinary application'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "config" -d 'view and validate the app config'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from ssg" -f -a "new" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from host" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from host" -f -a "metrics" -d 'get proxied service metrics'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from host" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from host" -f -a "accounts" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from host" -f -a "moderation" -d 'tools for moderation'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "js" -d 'utilities for managing JavaScript/TypeScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "qr-code" -d 'tool for generating QR codes'