Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,10 @@ h6 {
border-left-color: #374151 !important;
}

#solo-back-to-top {
display: none !important;
}

Comment on lines +340 to +343

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure what this does? if it's trying to remove the Scroll to top in the right-hand TOC, I still see that locally (and not sure why we'd remove it?)

Image

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's this other scroll to top button that is behind the ask ai on every page so you can't click it anyways. it's blue

/* ── Print styles ─────────────────────────────────────────────────────── */
@media print {
@page { margin: 1.5cm 2cm; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ stdio transport is ideal when:

```bash
# Download the stdio MCP configuration
curl -L https://raw.githubusercontent.com/agentgateway/agentgateway/refs/heads/main/examples/basic/config.yaml -o config.yaml
curl -L https://agentgateway.dev/examples/basic/config.yaml -o config.yaml

# Run agentgateway
agentgateway -f config.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ description: JSON schema reference for the agentgateway configuration file, plus
test: skip
---

The agentgateway configuration file is described by a [JSON schema](https://raw.githubusercontent.com/agentgateway/agentgateway/refs/heads/main/schema/config.json). This section explains how to wire that schema into your editor for inline validation, and provides the complete generated reference for every field.
The agentgateway configuration file is described by a [JSON schema](https://agentgateway.dev/schema/config). This section explains how to wire that schema into your editor for inline validation, and provides the complete generated reference for every field.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ stdio transport is ideal when:

```bash
# Download the stdio MCP configuration
curl -L https://raw.githubusercontent.com/agentgateway/agentgateway/refs/heads/main/examples/basic/config.yaml -o config.yaml
curl -L https://agentgateway.dev/examples/basic/config.yaml -o config.yaml

# Run agentgateway
agentgateway -f config.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ description: JSON schema reference for the agentgateway configuration file, plus
test: skip
---

The agentgateway configuration file is described by a [JSON schema](https://raw.githubusercontent.com/agentgateway/agentgateway/refs/heads/main/schema/config.json). This section explains how to wire that schema into your editor for inline validation, and provides the complete generated reference for every field.
The agentgateway configuration file is described by a [JSON schema](https://agentgateway.dev/schema/config). This section explains how to wire that schema into your editor for inline validation, and provides the complete generated reference for every field.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ stdio transport is ideal when:

```bash
# Download the stdio MCP configuration
curl -L https://raw.githubusercontent.com/agentgateway/agentgateway/refs/heads/main/examples/basic/config.yaml -o config.yaml
curl -L https://agentgateway.dev/examples/basic/config.yaml -o config.yaml

# Run agentgateway
agentgateway -f config.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ description: JSON schema reference for the agentgateway configuration file, plus
test: skip
---

The agentgateway configuration file is described by a [JSON schema](https://raw.githubusercontent.com/agentgateway/agentgateway/refs/heads/main/schema/config.json). This section explains how to wire that schema into your editor for inline validation, and provides the complete generated reference for every field.
The agentgateway configuration file is described by a [JSON schema](https://agentgateway.dev/schema/config). This section explains how to wire that schema into your editor for inline validation, and provides the complete generated reference for every field.
36 changes: 14 additions & 22 deletions layouts/partials/homepage-content.html
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@

/* ===== GETTING STARTED ===== */
.hp-gs-wrap {
display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-top: 32px;
display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-top: 32px; align-items: start;
}
@media (max-width: 860px) { .hp-gs-wrap { grid-template-columns: 1fr; } }
.hp-code-block {
Expand Down Expand Up @@ -1050,42 +1050,34 @@ <h2 class="hp-section-title">Getting started</h2>
<div class="com"># Install the agentgateway binary</div>
<div><span class="prompt-char">$</span> curl -sL https://agentgateway.dev/install | bash</div>
<div>&nbsp;</div>
<div class="com"># Download sample config</div>
<div><span class="prompt-char">$</span> curl -sL https://raw.githubusercontent.com/agentgateway/agentgateway/main/examples/basic/config.yaml -o config.yaml</div>
<div class="com"># Run</div>
<div><span class="prompt-char">$</span> agentgateway</div>
<div>&nbsp;</div>
<div class="com"># Run with the config</div>
<div><span class="prompt-char">$</span> agentgateway -f config.yaml</div>
<div>&nbsp;</div>
<div class="com"># INFO agentgateway: Listening on 0.0.0.0:3000</div>
<div class="com"># INFO agentgateway: Admin UI at http://localhost:15000/ui/</div>
<div class="com"># info app serving UI at http://localhost:15000/ui</div>
</div>
<div class="hp-code-panel" id="hp-code-helm">
<div class="com"># Install Gateway API CRDs</div>
<div><span class="prompt-char">$</span> kubectl apply --server-side --force-conflicts \</div>
<div> -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.5.0/standard-install.yaml</div>
<div>&nbsp;&nbsp;-f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.5.0/standard-install.yaml</div>
<div>&nbsp;</div>
<div class="com"># Install agentgateway CRDs via Helm</div>
<div><span class="prompt-char">$</span> helm upgrade -i agentgateway-crds \</div>
<div> oci://cr.agentgateway.dev/charts/agentgateway-crds \</div>
<div> --create-namespace --namespace agentgateway-system \</div>
<div> --version v1.2.1 \</div>
<div> --set controller.image.pullPolicy=Always</div>
<div>&nbsp;&nbsp;oci://cr.agentgateway.dev/charts/agentgateway-crds \</div>
<div>&nbsp;&nbsp;--create-namespace --namespace agentgateway-system \</div>
<div>&nbsp;&nbsp;--version v1.3.0</div>
<div>&nbsp;</div>
<div class="com"># Install agentgateway via Helm</div>
<div><span class="prompt-char">$</span> helm upgrade -i agentgateway \</div>
<div> oci://cr.agentgateway.dev/charts/agentgateway \</div>
<div> --namespace agentgateway-system \</div>
<div> --version v1.2.1 \</div>
<div> --set controller.image.pullPolicy=Always \</div>
<div> --set controller.extraEnv.KGW_ENABLE_GATEWAY_API_EXPERIMENTAL_FEATURES=true \</div>
<div> --wait</div>
<div>&nbsp;&nbsp;oci://cr.agentgateway.dev/charts/agentgateway \</div>
<div>&nbsp;&nbsp;--namespace agentgateway-system \</div>
<div>&nbsp;&nbsp;--version v1.3.0</div>
</div>
<div class="hp-code-panel" id="hp-code-docker">
<div class="com"># Run agentgateway in a container</div>
<div><span class="prompt-char">$</span> docker run -p 3000:3000 -p 15000:15000 \</div>
<div> -v $(pwd)/config.yaml:/etc/agentgateway/config.yaml \</div>
<div> ghcr.io/agentgateway/agentgateway:latest \</div>
<div> -f /etc/agentgateway/config.yaml</div>
<div>&nbsp;&nbsp;-v $(pwd)/config.yaml:/etc/agentgateway/config.yaml \</div>
<div>&nbsp;&nbsp;ghcr.io/agentgateway/agentgateway:latest \</div>
<div>&nbsp;&nbsp;-f /etc/agentgateway/config.yaml</div>
</div>
</div>
</div>
Expand Down
Loading