From aa381ee75623b74217fed708e1292e805a604518 Mon Sep 17 00:00:00 2001 From: Fred Carle Date: Wed, 18 Sep 2024 15:19:56 -0400 Subject: [PATCH] make keyring secret file path configurable --- cli/config.go | 56 ++++++++++--------- cli/root.go | 4 ++ cli/start.go | 3 - docs/website/references/cli/defradb.md | 31 +++++----- docs/website/references/cli/defradb_client.md | 29 +++++----- .../references/cli/defradb_client_acp.md | 33 +++++------ .../cli/defradb_client_acp_policy.md | 33 +++++------ .../cli/defradb_client_acp_policy_add.md | 33 +++++------ .../references/cli/defradb_client_backup.md | 33 +++++------ .../cli/defradb_client_backup_export.md | 33 +++++------ .../cli/defradb_client_backup_import.md | 33 +++++------ .../cli/defradb_client_collection.md | 29 +++++----- .../cli/defradb_client_collection_create.md | 41 +++++++------- .../cli/defradb_client_collection_delete.md | 41 +++++++------- .../cli/defradb_client_collection_describe.md | 33 +++++------ .../cli/defradb_client_collection_docIDs.md | 41 +++++++------- .../cli/defradb_client_collection_get.md | 41 +++++++------- .../cli/defradb_client_collection_patch.md | 41 +++++++------- .../cli/defradb_client_collection_update.md | 41 +++++++------- .../references/cli/defradb_client_dump.md | 33 +++++------ .../references/cli/defradb_client_index.md | 33 +++++------ .../cli/defradb_client_index_create.md | 33 +++++------ .../cli/defradb_client_index_drop.md | 33 +++++------ .../cli/defradb_client_index_list.md | 33 +++++------ .../references/cli/defradb_client_p2p.md | 33 +++++------ .../cli/defradb_client_p2p_collection.md | 33 +++++------ .../cli/defradb_client_p2p_collection_add.md | 33 +++++------ .../defradb_client_p2p_collection_getall.md | 33 +++++------ .../defradb_client_p2p_collection_remove.md | 33 +++++------ .../references/cli/defradb_client_p2p_info.md | 33 +++++------ .../cli/defradb_client_p2p_replicator.md | 33 +++++------ .../defradb_client_p2p_replicator_delete.md | 33 +++++------ .../defradb_client_p2p_replicator_getall.md | 33 +++++------ .../cli/defradb_client_p2p_replicator_set.md | 33 +++++------ .../references/cli/defradb_client_query.md | 33 +++++------ .../references/cli/defradb_client_schema.md | 33 +++++------ .../cli/defradb_client_schema_add.md | 33 +++++------ .../cli/defradb_client_schema_describe.md | 33 +++++------ .../cli/defradb_client_schema_migration.md | 33 +++++------ .../defradb_client_schema_migration_down.md | 33 +++++------ .../defradb_client_schema_migration_reload.md | 33 +++++------ ...db_client_schema_migration_set-registry.md | 33 +++++------ .../defradb_client_schema_migration_set.md | 33 +++++------ .../cli/defradb_client_schema_migration_up.md | 33 +++++------ .../cli/defradb_client_schema_patch.md | 33 +++++------ .../cli/defradb_client_schema_set-active.md | 33 +++++------ .../references/cli/defradb_client_tx.md | 33 +++++------ .../cli/defradb_client_tx_commit.md | 33 +++++------ .../cli/defradb_client_tx_create.md | 33 +++++------ .../cli/defradb_client_tx_discard.md | 33 +++++------ .../references/cli/defradb_client_view.md | 33 +++++------ .../references/cli/defradb_client_view_add.md | 33 +++++------ .../cli/defradb_client_view_refresh.md | 33 +++++------ .../references/cli/defradb_identity.md | 29 +++++----- .../references/cli/defradb_identity_new.md | 29 +++++----- .../website/references/cli/defradb_keyring.md | 29 +++++----- .../references/cli/defradb_keyring_export.md | 29 +++++----- .../cli/defradb_keyring_generate.md | 29 +++++----- .../references/cli/defradb_keyring_import.md | 29 +++++----- .../references/cli/defradb_server-dump.md | 29 +++++----- docs/website/references/cli/defradb_start.md | 29 +++++----- .../website/references/cli/defradb_version.md | 29 +++++----- 62 files changed, 1037 insertions(+), 975 deletions(-) diff --git a/cli/config.go b/cli/config.go index 35e3f1f920..2bb795a5d7 100644 --- a/cli/config.go +++ b/cli/config.go @@ -43,30 +43,31 @@ var configPaths = []string{ // configFlags is a mapping of cli flag names to config keys to bind. var configFlags = map[string]string{ - "log-level": "log.level", - "log-output": "log.output", - "log-format": "log.format", - "log-stacktrace": "log.stacktrace", - "log-source": "log.source", - "log-overrides": "log.overrides", - "no-log-color": "log.colordisabled", - "url": "api.address", - "max-txn-retries": "datastore.maxtxnretries", - "store": "datastore.store", - "valuelogfilesize": "datastore.badger.valuelogfilesize", - "peers": "net.peers", - "p2paddr": "net.p2paddresses", - "no-p2p": "net.p2pdisabled", - "allowed-origins": "api.allowed-origins", - "pubkeypath": "api.pubkeypath", - "privkeypath": "api.privkeypath", - "keyring-namespace": "keyring.namespace", - "keyring-backend": "keyring.backend", - "keyring-path": "keyring.path", - "no-keyring": "keyring.disabled", - "no-encryption-key": "keyring.noencryptionkey", - "source-hub-address": "acp.sourceHub.address", - "development": "development", + "log-level": "log.level", + "log-output": "log.output", + "log-format": "log.format", + "log-stacktrace": "log.stacktrace", + "log-source": "log.source", + "log-overrides": "log.overrides", + "no-log-color": "log.colordisabled", + "url": "api.address", + "max-txn-retries": "datastore.maxtxnretries", + "store": "datastore.store", + "valuelogfilesize": "datastore.badger.valuelogfilesize", + "peers": "net.peers", + "p2paddr": "net.p2paddresses", + "no-p2p": "net.p2pdisabled", + "allowed-origins": "api.allowed-origins", + "pubkeypath": "api.pubkeypath", + "privkeypath": "api.privkeypath", + "keyring-namespace": "keyring.namespace", + "keyring-backend": "keyring.backend", + "keyring-path": "keyring.path", + "no-keyring": "keyring.disabled", + "no-encryption-key": "keyring.noencryptionkey", + "keyring-secret-file": "keyring.secretfile", + "source-hub-address": "acp.sourceHub.address", + "development": "development", } // configDefaults contains default values for config entries. @@ -87,6 +88,7 @@ var configDefaults = map[string]any{ "keyring.disabled": false, "keyring.namespace": "defradb", "keyring.path": "keys", + "keyring.secretfile": ".env", "log.caller": false, "log.colordisabled": false, "log.format": "text", @@ -98,9 +100,6 @@ var configDefaults = map[string]any{ // defaultConfig returns a new config with default values. func defaultConfig() *viper.Viper { - // load environment variables from .env file if one exists - _ = godotenv.Load() - cfg := viper.New() cfg.AutomaticEnv() @@ -164,6 +163,9 @@ func loadConfig(rootdir string, flags *pflag.FlagSet) (*viper.Viper, error) { } } + // load environment variables from .env file if one exists + _ = godotenv.Load(cfg.GetString("keyring.secretfile")) + // set logging config corelog.SetConfig(corelog.Config{ Level: cfg.GetString("log.level"), diff --git a/cli/root.go b/cli/root.go index 2a94202657..2f27780a9b 100644 --- a/cli/root.go +++ b/cli/root.go @@ -92,6 +92,10 @@ Start a DefraDB node, interact with a local or remote node, and much more. cfg.GetString(configFlags["keyring-path"]), "Path to store encrypted keys when using the file backend", ) + cmd.PersistentFlags().String( + "keyring-secret-file", + cfg.GetString(configFlags["keyring-secret-file"]), + "Path to the file containing the keyring secret") cmd.PersistentFlags().Bool( "no-keyring", cfg.GetBool(configFlags["no-keyring"]), diff --git a/cli/start.go b/cli/start.go index b5c2efa9db..847c2078de 100644 --- a/cli/start.go +++ b/cli/start.go @@ -100,8 +100,6 @@ func MakeStartCommand() *cobra.Command { if err != nil { return err } -<<<<<<< HEAD -======= // load the required peer key or generate one if it doesn't exist peerKey, err := kr.Get(peerKeyName) if err != nil && errors.Is(err, keyring.ErrNotFound) { @@ -134,7 +132,6 @@ func MakeStartCommand() *cobra.Command { } else if err != nil && !errors.Is(err, keyring.ErrNotFound) { return err } ->>>>>>> 2cdf9388 (make keyring non-interactive) opts = append(opts, node.WithBadgerEncryptionKey(encryptionKey)) // setup the sourcehub transaction signer sourceHubKeyName := cfg.GetString("acp.sourceHub.KeyName") diff --git a/docs/website/references/cli/defradb.md b/docs/website/references/cli/defradb.md index 93dce2adef..07e7854c08 100644 --- a/docs/website/references/cli/defradb.md +++ b/docs/website/references/cli/defradb.md @@ -12,21 +12,22 @@ Start a DefraDB node, interact with a local or remote node, and much more. ### Options ``` - -h, --help help for defradb - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -h, --help help for defradb + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client.md b/docs/website/references/cli/defradb_client.md index 27f840d7ae..bea707a304 100644 --- a/docs/website/references/cli/defradb_client.md +++ b/docs/website/references/cli/defradb_client.md @@ -18,20 +18,21 @@ Execute queries, add schema types, obtain node info, etc. ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_acp.md b/docs/website/references/cli/defradb_client_acp.md index d1dc39e36e..73596c73d0 100644 --- a/docs/website/references/cli/defradb_client_acp.md +++ b/docs/website/references/cli/defradb_client_acp.md @@ -19,22 +19,23 @@ Learn more about [ACP](/acp/README.md) ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_acp_policy.md b/docs/website/references/cli/defradb_client_acp_policy.md index 720c072eae..02aac104a5 100644 --- a/docs/website/references/cli/defradb_client_acp_policy.md +++ b/docs/website/references/cli/defradb_client_acp_policy.md @@ -15,22 +15,23 @@ Interact with the acp policy features of DefraDB instance ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_acp_policy_add.md b/docs/website/references/cli/defradb_client_acp_policy_add.md index 596d7eb52f..459ce29efa 100644 --- a/docs/website/references/cli/defradb_client_acp_policy_add.md +++ b/docs/website/references/cli/defradb_client_acp_policy_add.md @@ -66,22 +66,23 @@ defradb client acp policy add [-i --identity] [policy] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_backup.md b/docs/website/references/cli/defradb_client_backup.md index ba6028b287..1773bd27f4 100644 --- a/docs/website/references/cli/defradb_client_backup.md +++ b/docs/website/references/cli/defradb_client_backup.md @@ -16,22 +16,23 @@ Currently only supports JSON format. ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_backup_export.md b/docs/website/references/cli/defradb_client_backup_export.md index e48f848b27..0b1df796b1 100644 --- a/docs/website/references/cli/defradb_client_backup_export.md +++ b/docs/website/references/cli/defradb_client_backup_export.md @@ -30,22 +30,23 @@ defradb client backup export [-c --collections | -p --pretty | -f --format] ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_backup_import.md b/docs/website/references/cli/defradb_client_backup_import.md index 3a3185c1c3..026e08e2eb 100644 --- a/docs/website/references/cli/defradb_client_backup_import.md +++ b/docs/website/references/cli/defradb_client_backup_import.md @@ -22,22 +22,23 @@ defradb client backup import [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_collection.md b/docs/website/references/cli/defradb_client_collection.md index ad6322d382..27f1c4cadc 100644 --- a/docs/website/references/cli/defradb_client_collection.md +++ b/docs/website/references/cli/defradb_client_collection.md @@ -21,20 +21,21 @@ Create, read, update, and delete documents within a collection. ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_collection_create.md b/docs/website/references/cli/defradb_client_collection_create.md index 92ec4a549b..3bf5ffd57d 100644 --- a/docs/website/references/cli/defradb_client_collection_create.md +++ b/docs/website/references/cli/defradb_client_collection_create.md @@ -54,26 +54,27 @@ defradb client collection create [-i --identity] [-e --encrypt] [--encrypt-field ### Options inherited from parent commands ``` - --get-inactive Get inactive collections as well as active - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --name string Collection name - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --schema string Collection schema Root - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") - --version string Collection version ID + --get-inactive Get inactive collections as well as active + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --name string Collection name + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --schema string Collection schema Root + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --version string Collection version ID ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_collection_delete.md b/docs/website/references/cli/defradb_client_collection_delete.md index 68b98d13c5..5b69940de6 100644 --- a/docs/website/references/cli/defradb_client_collection_delete.md +++ b/docs/website/references/cli/defradb_client_collection_delete.md @@ -32,26 +32,27 @@ defradb client collection delete [-i --identity] [--filter --docID ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --name string Collection name - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --schema string Collection schema Root - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") - --version string Collection version ID + --get-inactive Get inactive collections as well as active + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --name string Collection name + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --schema string Collection schema Root + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --version string Collection version ID ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_collection_describe.md b/docs/website/references/cli/defradb_client_collection_describe.md index 18ca881103..ec226d0eb6 100644 --- a/docs/website/references/cli/defradb_client_collection_describe.md +++ b/docs/website/references/cli/defradb_client_collection_describe.md @@ -36,22 +36,23 @@ defradb client collection describe [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_collection_docIDs.md b/docs/website/references/cli/defradb_client_collection_docIDs.md index 2c67725eda..4ab3af3bf6 100644 --- a/docs/website/references/cli/defradb_client_collection_docIDs.md +++ b/docs/website/references/cli/defradb_client_collection_docIDs.md @@ -26,26 +26,27 @@ defradb client collection docIDs [-i --identity] [flags] ### Options inherited from parent commands ``` - --get-inactive Get inactive collections as well as active - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --name string Collection name - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --schema string Collection schema Root - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") - --version string Collection version ID + --get-inactive Get inactive collections as well as active + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --name string Collection name + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --schema string Collection schema Root + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --version string Collection version ID ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_collection_get.md b/docs/website/references/cli/defradb_client_collection_get.md index a115f07883..c4b79c5902 100644 --- a/docs/website/references/cli/defradb_client_collection_get.md +++ b/docs/website/references/cli/defradb_client_collection_get.md @@ -27,26 +27,27 @@ defradb client collection get [-i --identity] [--show-deleted] [flags] ### Options inherited from parent commands ``` - --get-inactive Get inactive collections as well as active - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --name string Collection name - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --schema string Collection schema Root - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") - --version string Collection version ID + --get-inactive Get inactive collections as well as active + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --name string Collection name + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --schema string Collection schema Root + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --version string Collection version ID ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_collection_patch.md b/docs/website/references/cli/defradb_client_collection_patch.md index 689e897af0..ccb9043641 100644 --- a/docs/website/references/cli/defradb_client_collection_patch.md +++ b/docs/website/references/cli/defradb_client_collection_patch.md @@ -33,26 +33,27 @@ defradb client collection patch [patch] [flags] ### Options inherited from parent commands ``` - --get-inactive Get inactive collections as well as active - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --name string Collection name - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --schema string Collection schema Root - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") - --version string Collection version ID + --get-inactive Get inactive collections as well as active + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --name string Collection name + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --schema string Collection schema Root + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --version string Collection version ID ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_collection_update.md b/docs/website/references/cli/defradb_client_collection_update.md index d00f44b07c..36d911a9ba 100644 --- a/docs/website/references/cli/defradb_client_collection_update.md +++ b/docs/website/references/cli/defradb_client_collection_update.md @@ -38,26 +38,27 @@ defradb client collection update [-i --identity] [--filter --docID ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --name string Collection name - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --schema string Collection schema Root - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") - --version string Collection version ID + --get-inactive Get inactive collections as well as active + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --name string Collection name + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --schema string Collection schema Root + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --version string Collection version ID ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_dump.md b/docs/website/references/cli/defradb_client_dump.md index fbf1794eef..d5b3ab9529 100644 --- a/docs/website/references/cli/defradb_client_dump.md +++ b/docs/website/references/cli/defradb_client_dump.md @@ -15,22 +15,23 @@ defradb client dump [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_index.md b/docs/website/references/cli/defradb_client_index.md index 1282dbb99a..47a24dd701 100644 --- a/docs/website/references/cli/defradb_client_index.md +++ b/docs/website/references/cli/defradb_client_index.md @@ -15,22 +15,23 @@ Manage (create, drop, or list) collection indexes on a DefraDB node. ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_index_create.md b/docs/website/references/cli/defradb_client_index_create.md index 88a5b2b847..6b7257c52f 100644 --- a/docs/website/references/cli/defradb_client_index_create.md +++ b/docs/website/references/cli/defradb_client_index_create.md @@ -32,22 +32,23 @@ defradb client index create -c --collection --fields [-n - ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_index_drop.md b/docs/website/references/cli/defradb_client_index_drop.md index df2cac7fc3..641e584187 100644 --- a/docs/website/references/cli/defradb_client_index_drop.md +++ b/docs/website/references/cli/defradb_client_index_drop.md @@ -24,22 +24,23 @@ defradb client index drop -c --collection -n --name [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_index_list.md b/docs/website/references/cli/defradb_client_index_list.md index 360fa7fbd9..764fbdb1eb 100644 --- a/docs/website/references/cli/defradb_client_index_list.md +++ b/docs/website/references/cli/defradb_client_index_list.md @@ -26,22 +26,23 @@ defradb client index list [-c --collection ] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p.md b/docs/website/references/cli/defradb_client_p2p.md index 77104e9c4f..cf7b1d0bc9 100644 --- a/docs/website/references/cli/defradb_client_p2p.md +++ b/docs/website/references/cli/defradb_client_p2p.md @@ -15,22 +15,23 @@ Interact with the DefraDB P2P system ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_collection.md b/docs/website/references/cli/defradb_client_p2p_collection.md index 9cef79c61e..ec2e61d09d 100644 --- a/docs/website/references/cli/defradb_client_p2p_collection.md +++ b/docs/website/references/cli/defradb_client_p2p_collection.md @@ -16,22 +16,23 @@ The selected collections synchronize their events on the pubsub network. ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_collection_add.md b/docs/website/references/cli/defradb_client_p2p_collection_add.md index 0faef4908b..7b52b42e9a 100644 --- a/docs/website/references/cli/defradb_client_p2p_collection_add.md +++ b/docs/website/references/cli/defradb_client_p2p_collection_add.md @@ -27,22 +27,23 @@ defradb client p2p collection add [collectionIDs] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_collection_getall.md b/docs/website/references/cli/defradb_client_p2p_collection_getall.md index 2154256fc1..94f150226a 100644 --- a/docs/website/references/cli/defradb_client_p2p_collection_getall.md +++ b/docs/website/references/cli/defradb_client_p2p_collection_getall.md @@ -20,22 +20,23 @@ defradb client p2p collection getall [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_collection_remove.md b/docs/website/references/cli/defradb_client_p2p_collection_remove.md index 24cbee423e..4b61fa1395 100644 --- a/docs/website/references/cli/defradb_client_p2p_collection_remove.md +++ b/docs/website/references/cli/defradb_client_p2p_collection_remove.md @@ -27,22 +27,23 @@ defradb client p2p collection remove [collectionIDs] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_info.md b/docs/website/references/cli/defradb_client_p2p_info.md index 9a23b68535..d8d2d21368 100644 --- a/docs/website/references/cli/defradb_client_p2p_info.md +++ b/docs/website/references/cli/defradb_client_p2p_info.md @@ -19,22 +19,23 @@ defradb client p2p info [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_replicator.md b/docs/website/references/cli/defradb_client_p2p_replicator.md index 9976113c65..c3b1c947bc 100644 --- a/docs/website/references/cli/defradb_client_p2p_replicator.md +++ b/docs/website/references/cli/defradb_client_p2p_replicator.md @@ -16,22 +16,23 @@ A replicator replicates one or all collection(s) from one node to another. ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_replicator_delete.md b/docs/website/references/cli/defradb_client_p2p_replicator_delete.md index cd153c081b..72d00acb78 100644 --- a/docs/website/references/cli/defradb_client_p2p_replicator_delete.md +++ b/docs/website/references/cli/defradb_client_p2p_replicator_delete.md @@ -25,22 +25,23 @@ defradb client p2p replicator delete [-c, --collection] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_replicator_getall.md b/docs/website/references/cli/defradb_client_p2p_replicator_getall.md index 063c70286c..4d9dc0c145 100644 --- a/docs/website/references/cli/defradb_client_p2p_replicator_getall.md +++ b/docs/website/references/cli/defradb_client_p2p_replicator_getall.md @@ -24,22 +24,23 @@ defradb client p2p replicator getall [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_p2p_replicator_set.md b/docs/website/references/cli/defradb_client_p2p_replicator_set.md index 6bf37ab3f4..255fd62cd7 100644 --- a/docs/website/references/cli/defradb_client_p2p_replicator_set.md +++ b/docs/website/references/cli/defradb_client_p2p_replicator_set.md @@ -25,22 +25,23 @@ defradb client p2p replicator set [-c, --collection] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_query.md b/docs/website/references/cli/defradb_client_query.md index 7519128bbd..d9d4754f84 100644 --- a/docs/website/references/cli/defradb_client_query.md +++ b/docs/website/references/cli/defradb_client_query.md @@ -39,22 +39,23 @@ defradb client query [-i --identity] [request] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema.md b/docs/website/references/cli/defradb_client_schema.md index 10f7a2237a..d7984562ff 100644 --- a/docs/website/references/cli/defradb_client_schema.md +++ b/docs/website/references/cli/defradb_client_schema.md @@ -15,22 +15,23 @@ Make changes, updates, or look for existing schema types. ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_add.md b/docs/website/references/cli/defradb_client_schema_add.md index 3c20388acd..12b54470ac 100644 --- a/docs/website/references/cli/defradb_client_schema_add.md +++ b/docs/website/references/cli/defradb_client_schema_add.md @@ -36,22 +36,23 @@ defradb client schema add [schema] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_describe.md b/docs/website/references/cli/defradb_client_schema_describe.md index 80e2e1b053..43d8c10289 100644 --- a/docs/website/references/cli/defradb_client_schema_describe.md +++ b/docs/website/references/cli/defradb_client_schema_describe.md @@ -35,22 +35,23 @@ defradb client schema describe [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_migration.md b/docs/website/references/cli/defradb_client_schema_migration.md index dc30e11ebc..1d6bb6b980 100644 --- a/docs/website/references/cli/defradb_client_schema_migration.md +++ b/docs/website/references/cli/defradb_client_schema_migration.md @@ -15,22 +15,23 @@ Make set or look for existing schema migrations on a DefraDB node. ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_migration_down.md b/docs/website/references/cli/defradb_client_schema_migration_down.md index 69dca887ca..34111ee299 100644 --- a/docs/website/references/cli/defradb_client_schema_migration_down.md +++ b/docs/website/references/cli/defradb_client_schema_migration_down.md @@ -32,22 +32,23 @@ defradb client schema migration down --collection [fl ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_migration_reload.md b/docs/website/references/cli/defradb_client_schema_migration_reload.md index d5a3ae3e82..0460e7532c 100644 --- a/docs/website/references/cli/defradb_client_schema_migration_reload.md +++ b/docs/website/references/cli/defradb_client_schema_migration_reload.md @@ -19,22 +19,23 @@ defradb client schema migration reload [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_migration_set-registry.md b/docs/website/references/cli/defradb_client_schema_migration_set-registry.md index d49213920c..fdcbcae5de 100644 --- a/docs/website/references/cli/defradb_client_schema_migration_set-registry.md +++ b/docs/website/references/cli/defradb_client_schema_migration_set-registry.md @@ -25,22 +25,23 @@ defradb client schema migration set-registry [collectionID] [cfg] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_migration_set.md b/docs/website/references/cli/defradb_client_schema_migration_set.md index b5063e2033..17e17a6f42 100644 --- a/docs/website/references/cli/defradb_client_schema_migration_set.md +++ b/docs/website/references/cli/defradb_client_schema_migration_set.md @@ -32,22 +32,23 @@ defradb client schema migration set [src] [dst] [cfg] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_migration_up.md b/docs/website/references/cli/defradb_client_schema_migration_up.md index 83ccd49e04..47136e7fc7 100644 --- a/docs/website/references/cli/defradb_client_schema_migration_up.md +++ b/docs/website/references/cli/defradb_client_schema_migration_up.md @@ -32,22 +32,23 @@ defradb client schema migration up --collection [flag ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_patch.md b/docs/website/references/cli/defradb_client_schema_patch.md index 7d18010a26..f0ea59365a 100644 --- a/docs/website/references/cli/defradb_client_schema_patch.md +++ b/docs/website/references/cli/defradb_client_schema_patch.md @@ -35,22 +35,23 @@ defradb client schema patch [schema] [migration] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_schema_set-active.md b/docs/website/references/cli/defradb_client_schema_set-active.md index fc57c21006..adfb189de2 100644 --- a/docs/website/references/cli/defradb_client_schema_set-active.md +++ b/docs/website/references/cli/defradb_client_schema_set-active.md @@ -20,22 +20,23 @@ defradb client schema set-active [versionID] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_tx.md b/docs/website/references/cli/defradb_client_tx.md index b341aa699e..ab8c447aa1 100644 --- a/docs/website/references/cli/defradb_client_tx.md +++ b/docs/website/references/cli/defradb_client_tx.md @@ -15,22 +15,23 @@ Create, commit, and discard DefraDB transactions ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_tx_commit.md b/docs/website/references/cli/defradb_client_tx_commit.md index 6c449593e2..28c15508bf 100644 --- a/docs/website/references/cli/defradb_client_tx_commit.md +++ b/docs/website/references/cli/defradb_client_tx_commit.md @@ -19,22 +19,23 @@ defradb client tx commit [id] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_tx_create.md b/docs/website/references/cli/defradb_client_tx_create.md index 0b860c7ace..310a61955c 100644 --- a/docs/website/references/cli/defradb_client_tx_create.md +++ b/docs/website/references/cli/defradb_client_tx_create.md @@ -21,22 +21,23 @@ defradb client tx create [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_tx_discard.md b/docs/website/references/cli/defradb_client_tx_discard.md index d3e378e02b..544876a17b 100644 --- a/docs/website/references/cli/defradb_client_tx_discard.md +++ b/docs/website/references/cli/defradb_client_tx_discard.md @@ -19,22 +19,23 @@ defradb client tx discard [id] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_view.md b/docs/website/references/cli/defradb_client_view.md index faee845c64..472ab15925 100644 --- a/docs/website/references/cli/defradb_client_view.md +++ b/docs/website/references/cli/defradb_client_view.md @@ -15,22 +15,23 @@ Manage (add) views withing a running DefraDB instance ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_view_add.md b/docs/website/references/cli/defradb_client_view_add.md index 41d64d202f..3b67a62f4c 100644 --- a/docs/website/references/cli/defradb_client_view_add.md +++ b/docs/website/references/cli/defradb_client_view_add.md @@ -25,22 +25,23 @@ defradb client view add [query] [sdl] [transform] [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_client_view_refresh.md b/docs/website/references/cli/defradb_client_view_refresh.md index 0a91aec604..d1c15c5500 100644 --- a/docs/website/references/cli/defradb_client_view_refresh.md +++ b/docs/website/references/cli/defradb_client_view_refresh.md @@ -41,22 +41,23 @@ defradb client view refresh [flags] ### Options inherited from parent commands ``` - -i, --identity string Hex formatted private key used to authenticate with ACP - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --tx uint Transaction ID - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + -i, --identity string Hex formatted private key used to authenticate with ACP + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --tx uint Transaction ID + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_identity.md b/docs/website/references/cli/defradb_identity.md index 016561b39c..35410a95d9 100644 --- a/docs/website/references/cli/defradb_identity.md +++ b/docs/website/references/cli/defradb_identity.md @@ -15,20 +15,21 @@ Interact with identity features of DefraDB instance ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_identity_new.md b/docs/website/references/cli/defradb_identity_new.md index 05dcc6fe0a..c575fdefb5 100644 --- a/docs/website/references/cli/defradb_identity_new.md +++ b/docs/website/references/cli/defradb_identity_new.md @@ -30,20 +30,21 @@ defradb identity new [flags] ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_keyring.md b/docs/website/references/cli/defradb_keyring.md index c01c69bd1b..731a69a273 100644 --- a/docs/website/references/cli/defradb_keyring.md +++ b/docs/website/references/cli/defradb_keyring.md @@ -30,20 +30,21 @@ To learn more about the available options: ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_keyring_export.md b/docs/website/references/cli/defradb_keyring_export.md index 44890293e1..1a682a7cbf 100644 --- a/docs/website/references/cli/defradb_keyring_export.md +++ b/docs/website/references/cli/defradb_keyring_export.md @@ -26,20 +26,21 @@ defradb keyring export [flags] ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_keyring_generate.md b/docs/website/references/cli/defradb_keyring_generate.md index 1da38fa72c..5b09ca645c 100644 --- a/docs/website/references/cli/defradb_keyring_generate.md +++ b/docs/website/references/cli/defradb_keyring_generate.md @@ -40,20 +40,21 @@ defradb keyring generate [flags] ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_keyring_import.md b/docs/website/references/cli/defradb_keyring_import.md index 08da00e78e..8618a79f22 100644 --- a/docs/website/references/cli/defradb_keyring_import.md +++ b/docs/website/references/cli/defradb_keyring_import.md @@ -26,20 +26,21 @@ defradb keyring import [flags] ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_server-dump.md b/docs/website/references/cli/defradb_server-dump.md index 75dd56094e..fbfa3b2458 100644 --- a/docs/website/references/cli/defradb_server-dump.md +++ b/docs/website/references/cli/defradb_server-dump.md @@ -15,20 +15,21 @@ defradb server-dump [flags] ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_start.md b/docs/website/references/cli/defradb_start.md index 0b5a719e1d..9c1a7d154b 100644 --- a/docs/website/references/cli/defradb_start.md +++ b/docs/website/references/cli/defradb_start.md @@ -30,20 +30,21 @@ defradb start [flags] ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO diff --git a/docs/website/references/cli/defradb_version.md b/docs/website/references/cli/defradb_version.md index c752a6936e..bfeeaa3e33 100644 --- a/docs/website/references/cli/defradb_version.md +++ b/docs/website/references/cli/defradb_version.md @@ -17,20 +17,21 @@ defradb version [flags] ### Options inherited from parent commands ``` - --keyring-backend string Keyring backend to use. Options are file or system (default "file") - --keyring-namespace string Service name to use when using the system backend (default "defradb") - --keyring-path string Path to store encrypted keys when using the file backend (default "keys") - --log-format string Log format to use. Options are text or json (default "text") - --log-level string Log level to use. Options are debug, info, error, fatal (default "info") - --log-output string Log output path. Options are stderr or stdout. (default "stderr") - --log-overrides string Logger config overrides. Format ,=,...;,... - --log-source Include source location in logs - --log-stacktrace Include stacktrace in error and fatal logs - --no-keyring Disable the keyring and generate ephemeral keys - --no-log-color Disable colored log output - --rootdir string Directory for persistent data (default: $HOME/.defradb) - --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor - --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") + --keyring-backend string Keyring backend to use. Options are file or system (default "file") + --keyring-namespace string Service name to use when using the system backend (default "defradb") + --keyring-path string Path to store encrypted keys when using the file backend (default "keys") + --keyring-secret-file string Path to the file containing the keyring secret (default ".env") + --log-format string Log format to use. Options are text or json (default "text") + --log-level string Log level to use. Options are debug, info, error, fatal (default "info") + --log-output string Log output path. Options are stderr or stdout. (default "stderr") + --log-overrides string Logger config overrides. Format ,=,...;,... + --log-source Include source location in logs + --log-stacktrace Include stacktrace in error and fatal logs + --no-keyring Disable the keyring and generate ephemeral keys + --no-log-color Disable colored log output + --rootdir string Directory for persistent data (default: $HOME/.defradb) + --source-hub-address string The SourceHub address authorized by the client to make SourceHub transactions on behalf of the actor + --url string URL of HTTP endpoint to listen on or connect to (default "127.0.0.1:9181") ``` ### SEE ALSO