From ae29d5c02bf6d2890f9f02594ee4369b1bbcb4d9 Mon Sep 17 00:00:00 2001 From: Aram Grigoryan <132480+aram356@users.noreply.github.com> Date: Mon, 8 Jun 2026 12:44:34 -0700 Subject: [PATCH 1/2] Use .tool-versions variables in getting-started prerequisites Replace hardcoded versions in the Getting Started prerequisites with {{RUST_VERSION}}, {{NODEJS_VERSION}}, and {{FASTLY_VERSION}} placeholders, which the VitePress config substitutes from .tool-versions at build time. Adds NodeJS as an explicit prerequisite so contributors install Node/npm before the JS build runs. Supersedes #758. Fixes #747. --- docs/guide/getting-started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index a4ed418c..881a40b1 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -4,10 +4,11 @@ Get up and running with Trusted Server quickly. ## Prerequisites -Before you begin, ensure you have: +Before you begin, ensure you have the following installed (versions are pinned in `.tool-versions`): -- Rust 1.91.1 (see `.tool-versions`) -- Fastly CLI installed +- Rust {{RUST_VERSION}} +- NodeJS {{NODEJS_VERSION}} +- Fastly {{FASTLY_VERSION}} CLI installed - A Fastly account and API key - Basic familiarity with WebAssembly @@ -72,6 +73,5 @@ fastly compute publish ## Next Steps - Learn about [Edge Cookies](/guide/edge-cookies) -- Follow the [EC Setup Guide](/guide/ec-setup-guide) - Understand [GDPR Compliance](/guide/gdpr-compliance) - Configure [Ad Serving](/guide/ad-serving) From e9b3014f8b893c00d4d6c7be4313c7ff8a653f62 Mon Sep 17 00:00:00 2001 From: Aram Grigoryan <132480+aram356@users.noreply.github.com> Date: Mon, 8 Jun 2026 13:09:49 -0700 Subject: [PATCH 2/2] Fixed missing guide --- docs/guide/getting-started.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index 881a40b1..be43315f 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -73,5 +73,6 @@ fastly compute publish ## Next Steps - Learn about [Edge Cookies](/guide/edge-cookies) +- Follow the [EC Setup Guide](/guide/ec-setup-guide) - Understand [GDPR Compliance](/guide/gdpr-compliance) - Configure [Ad Serving](/guide/ad-serving)