Skip to main content

Usage

anaconda sites show [OPTIONS] <SITE>
Replace <SITE> with a configured site name or domain name.

Description

Displays the configuration for a site as JSON. When no site is specified, shows the default site. Use --all to display every configured site at once, or --show-hidden to include internal fields that are hidden by default.

Arguments

Argument
Description
SITE
(optional) Site name or domain name to look up. Defaults to the configured default site.

Options

Option
Description
--all
Show all site configurations
--show-hidden
Include hidden internal fields in the output
-h, --help
Show help for this command

Examples

Show the default site configuration
anaconda sites show
Sample output:
{
  "site": "my-platform",
  "domain": "anaconda-platform.example.com",
  "ssl_verify": true,
  "extra_headers": null,
  "use_unified_repo_api_key": false,
  "proxy_servers": null,
  "client_cert": null,
  "client_cert_key": null,
  "use_device_flow": false
}
Show configuration for a specific site
anaconda sites show my-platform
Show all configured sites
anaconda sites show --all