> ## Documentation Index
> Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# anaconda sites show

export const GCell = ({children, className}) => <div className={`grid-table-cell ${className || ""}`} role="cell">
    {children}
  </div>;

export const GTH = ({children, className}) => <div className={`grid-table-th ${className || ""}`} role="columnheader">
    {children}
  </div>;

export const GRow = ({children}) => <div className="grid-table-row" role="row">{children}</div>;

export const GBody = ({children}) => <div className="grid-table-body" role="rowgroup">{children}</div>;

export const GHead = ({children}) => <div className="grid-table-head" role="rowgroup">{children}</div>;

export const GTable = ({children, className, cols}) => <div className={`grid-table not-prose overflow-hidden rounded-2xl ${className || ""}`} style={{
  "--grid-table-cols": cols
}} role="table">
    {children}
  </div>;

## Usage

```bash theme={null}
anaconda sites show [OPTIONS] [SITE]
```

## 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

<GTable cols="30% 70%">
  <GHead>
    <GRow>
      <GTH>Argument</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`SITE`</GCell>
      <GCell>*(optional)* Site name or domain name to look up. Defaults to the configured default site.</GCell>
    </GRow>
  </GBody>
</GTable>

## Options

<GTable cols="30% 70%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`--all`</GCell>
      <GCell>Show all site configurations</GCell>
    </GRow>

    <GRow>
      <GCell>`--show-hidden`</GCell>
      <GCell>Include hidden internal fields in the output</GCell>
    </GRow>

    <GRow>
      <GCell>`-h, --help`</GCell>
      <GCell>Show help for this command</GCell>
    </GRow>
  </GBody>
</GTable>

## Examples

**Show the default site configuration**

```bash theme={null}
anaconda sites show
```

Sample output:

```json theme={null}
{
  "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**

```bash theme={null}
anaconda sites show my-platform
```

**Show all configured sites**

```bash theme={null}
anaconda sites show --all
```
