From 723e6d656ede3ead9d422fa3427e07b42d0b67af Mon Sep 17 00:00:00 2001 From: HDCode <215285761+hdcodedev@users.noreply.github.com> Date: Thu, 26 Mar 2026 16:06:22 +0100 Subject: [PATCH 1/2] Update README with build and start instructions Removed notes section and updated instructions. --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 4a0ebf0..480dd46 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,3 @@ cd docs-app npm run build npm run start ``` - -## Notes - -- `main` contains docs source and app code. -- Set `DOCS_STATIC_BASE_URL` for local/dev/CI since `/static/*` is always served from CDN. From ea0150d853e554857cce7b79b8a1b454890575c9 Mon Sep 17 00:00:00 2001 From: HDCode <215285761+hdcodedev@users.noreply.github.com> Date: Thu, 26 Mar 2026 16:11:05 +0100 Subject: [PATCH 2/2] Update README with local development instructions Removed build instructions and updated static assets note. --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 480dd46..334e417 100644 --- a/README.md +++ b/README.md @@ -2,25 +2,19 @@ Documentation repository for Charts. +Screenshot 2026-03-26 at 16 07 36 + + ## Repo Layout - `docs-app/` - Next.js docs website - `content/` - versioned markdown content - `registry/versions.json` - version registry used by the site -- static assets for API/demo/playground are served from object storage/CDN via `DOCS_STATIC_BASE_URL` +- static assets for API/demo/playground are served from object storage/CDN ## Local Development ```bash cd docs-app -npm ci npm run dev ``` - -## Build - -```bash -cd docs-app -npm run build -npm run start -```