From a8d1f5a68511c18e6557ed5d2e73fce0fc395903 Mon Sep 17 00:00:00 2001 From: Santhi Prakash <38608178+santhiprakash@users.noreply.github.com> Date: Fri, 14 Aug 2026 02:20:53 +0530 Subject: [PATCH] docs(contributing): align app names in guide frontmatter (#3287) - Problem: development.mdx and architecture.mdx frontmatter still referenced removed client/worker/artboard apps even though the monorepo only ships apps/web and apps/server. - Fix: update both descriptions to say web and server apps. - Verification: docs-only; grep confirms only apps/web and apps/server exist. Co-authored-by: Amruth Pillai --- docs/contributing/architecture.mdx | 2 +- docs/contributing/development.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributing/architecture.mdx b/docs/contributing/architecture.mdx index 176a933c6..0da83d072 100644 --- a/docs/contributing/architecture.mdx +++ b/docs/contributing/architecture.mdx @@ -1,6 +1,6 @@ --- title: "Project Architecture" -description: "Explore the Reactive Resume monorepo layout, runtime boundaries between client, server, artboard, and worker apps, and the package ownership model." +description: "Explore the Reactive Resume monorepo layout, runtime boundaries between the web and server apps, and the package ownership model." --- Reactive Resume is a pnpm/Turborepo monorepo. The product runs as one deployed Node.js process, while the source is split into a full-stack web app, a server adapter, and focused internal packages. diff --git a/docs/contributing/development.mdx b/docs/contributing/development.mdx index d3fa96ac9..e381ec166 100644 --- a/docs/contributing/development.mdx +++ b/docs/contributing/development.mdx @@ -1,6 +1,6 @@ --- title: "Development Setup" -description: "Set up a local development environment for Reactive Resume with pnpm, Docker services, environment variables, and the client, server, and worker apps." +description: "Set up a local development environment for Reactive Resume with pnpm, Docker services, environment variables, and the web and server apps." ---