# Print an optspec for argparse to handle cmd's options that are independent of any subcommand.
function __fish_ordinary_global_optspecs
string join \n p/project= api-domain= insecure danger-accept-invalid-certs 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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_needs_command" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_needs_command" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_needs_command" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 migrate kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy migrate kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy migrate kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy migrate kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes 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 app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate kill restart erase logs assets accounts account accts acct functions fns fn function database db secrets config routes help" -f -a "migrate" -d 'push a configuration change which will modify the shape of your data stores'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from new create init build start run preview publish deploy migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 migrate 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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from new" -l api-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 new" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from new" -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 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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from create" -l api-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 create" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from create" -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 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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from init" -l api-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 init" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from init" -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 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" -l api-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 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" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from build" -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 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 api-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 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" -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 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 api-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 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" -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 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 api-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 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" -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 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" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from publish" -l api-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 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" -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 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" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l api-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 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" -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 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 migrate" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l api-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 migrate" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -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 migrate" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -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 migrate" -s V -l version -d 'Print version'
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 api-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" -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" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l api-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 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" -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 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" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l api-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" -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" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l api-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" -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" -l api-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 assets" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from assets" -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 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" -l api-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 accounts" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -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 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" -l api-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 account" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from account" -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 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" -l api-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 accts" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accts" -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 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" -l api-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 acct" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from acct" -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 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" -l api-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 functions" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from functions" -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 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" -l api-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 fns" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fns" -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 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" -l api-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 fn" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from fn" -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 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" -l api-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 function" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from function" -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 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" -l api-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 database" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from database" -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 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" -l api-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 db" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from db" -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 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" -l api-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 secrets" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from secrets" -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 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" -l api-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 config" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from config" -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 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" -l api-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 routes" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -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 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 "migrate" -d 'push a configuration change which will modify the shape of your data stores'
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" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from new create init 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 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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -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" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from new" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -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" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from create" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -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" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 lock unlock accounts account accts acct help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs lock unlock accounts account accts acct help" -l api-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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct help" -f -a "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs lock unlock accounts account accts acct help" -f -a "unlock" -d 'unlock resources upon resolution'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and not __fish_seen_subcommand_from info metrics logs lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 lock unlock accounts account accts acct 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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from info" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from info" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from info" -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 __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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from metrics" -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 __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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from logs" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; 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 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 lock" -s a -l account -d 'account to be locked' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from lock" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from lock" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from lock" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from lock" -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 __fish_seen_subcommand_from lock" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from lock" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from lock" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from lock" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from lock" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -s a -l account -d 'account to be unlocked' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -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 __fish_seen_subcommand_from unlock" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from unlock" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accounts" -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 __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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from account" -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 __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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from accts" -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 __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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from acct" -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 __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 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 "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand host; and __fish_seen_subcommand_from help" -f -a "unlock" -d 'unlock resources upon resolution'
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 "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''
go\t''
js\t''
exiftool\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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''
go\t''
js\t''
exiftool\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand dr" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif 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 utils; and not __fish_seen_subcommand_from uuid timestamp ts html css js markdown md exif 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from ts" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from md" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
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 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 "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 "migrate" -d 'push a configuration change which will modify the shape of your data stores'
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 "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from host" -f -a "unlock" -d 'unlock resources upon resolution'
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 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'