diff --git a/assets/css/custom.css b/assets/css/custom.css index 410b1be85..ebeb0a648 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -337,6 +337,10 @@ h6 { border-left-color: #374151 !important; } +#solo-back-to-top { + display: none !important; +} + /* ── Print styles ─────────────────────────────────────────────────────── */ @media print { @page { margin: 1.5cm 2cm; } diff --git a/content/docs/standalone/1.2.x/integrations/mcp-servers/stdio.md b/content/docs/standalone/1.2.x/integrations/mcp-servers/stdio.md index da1e4b7f8..885a38c8c 100644 --- a/content/docs/standalone/1.2.x/integrations/mcp-servers/stdio.md +++ b/content/docs/standalone/1.2.x/integrations/mcp-servers/stdio.md @@ -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 diff --git a/content/docs/standalone/1.2.x/reference/configuration/_index.md b/content/docs/standalone/1.2.x/reference/configuration/_index.md index 6f3b5e2f7..92c5cd8a9 100644 --- a/content/docs/standalone/1.2.x/reference/configuration/_index.md +++ b/content/docs/standalone/1.2.x/reference/configuration/_index.md @@ -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. diff --git a/content/docs/standalone/latest/integrations/mcp-servers/stdio.md b/content/docs/standalone/latest/integrations/mcp-servers/stdio.md index da1e4b7f8..885a38c8c 100644 --- a/content/docs/standalone/latest/integrations/mcp-servers/stdio.md +++ b/content/docs/standalone/latest/integrations/mcp-servers/stdio.md @@ -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 diff --git a/content/docs/standalone/latest/reference/configuration/_index.md b/content/docs/standalone/latest/reference/configuration/_index.md index 6f3b5e2f7..92c5cd8a9 100644 --- a/content/docs/standalone/latest/reference/configuration/_index.md +++ b/content/docs/standalone/latest/reference/configuration/_index.md @@ -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. diff --git a/content/docs/standalone/main/integrations/mcp-servers/stdio.md b/content/docs/standalone/main/integrations/mcp-servers/stdio.md index da1e4b7f8..885a38c8c 100644 --- a/content/docs/standalone/main/integrations/mcp-servers/stdio.md +++ b/content/docs/standalone/main/integrations/mcp-servers/stdio.md @@ -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 diff --git a/content/docs/standalone/main/reference/configuration/_index.md b/content/docs/standalone/main/reference/configuration/_index.md index 6f3b5e2f7..92c5cd8a9 100644 --- a/content/docs/standalone/main/reference/configuration/_index.md +++ b/content/docs/standalone/main/reference/configuration/_index.md @@ -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. diff --git a/layouts/partials/homepage-content.html b/layouts/partials/homepage-content.html index a1e9fd974..6126ff1c9 100644 --- a/layouts/partials/homepage-content.html +++ b/layouts/partials/homepage-content.html @@ -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 { @@ -1050,42 +1050,34 @@

Getting started

# Install the agentgateway binary
$ curl -sL https://agentgateway.dev/install | bash
 
-
# Download sample config
-
$ curl -sL https://raw.githubusercontent.com/agentgateway/agentgateway/main/examples/basic/config.yaml -o config.yaml
+
# Run
+
$ agentgateway
 
-
# Run with the config
-
$ agentgateway -f config.yaml
-
 
-
# INFO agentgateway: Listening on 0.0.0.0:3000
-
# INFO agentgateway: Admin UI at http://localhost:15000/ui/
+
# info app serving UI at http://localhost:15000/ui
# Install Gateway API CRDs
$ kubectl apply --server-side --force-conflicts \
-
-f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.5.0/standard-install.yaml
+
  -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.5.0/standard-install.yaml
 
# Install agentgateway CRDs via Helm
$ helm upgrade -i agentgateway-crds \
-
oci://cr.agentgateway.dev/charts/agentgateway-crds \
-
--create-namespace --namespace agentgateway-system \
-
--version v1.2.1 \
-
--set controller.image.pullPolicy=Always
+
  oci://cr.agentgateway.dev/charts/agentgateway-crds \
+
  --create-namespace --namespace agentgateway-system \
+
  --version v1.3.0
 
# Install agentgateway via Helm
$ helm upgrade -i agentgateway \
-
oci://cr.agentgateway.dev/charts/agentgateway \
-
--namespace agentgateway-system \
-
--version v1.2.1 \
-
--set controller.image.pullPolicy=Always \
-
--set controller.extraEnv.KGW_ENABLE_GATEWAY_API_EXPERIMENTAL_FEATURES=true \
-
--wait
+
  oci://cr.agentgateway.dev/charts/agentgateway \
+
  --namespace agentgateway-system \
+
  --version v1.3.0
# Run agentgateway in a container
$ docker run -p 3000:3000 -p 15000:15000 \
-
-v $(pwd)/config.yaml:/etc/agentgateway/config.yaml \
-
ghcr.io/agentgateway/agentgateway:latest \
-
-f /etc/agentgateway/config.yaml
+
  -v $(pwd)/config.yaml:/etc/agentgateway/config.yaml \
+
  ghcr.io/agentgateway/agentgateway:latest \
+
  -f /etc/agentgateway/config.yaml