From e6b4733c5f266107be9280e6f57bd42a227b4be0 Mon Sep 17 00:00:00 2001 From: Santhi Prakash <38608178+santhiprakash@users.noreply.github.com> Date: Mon, 27 Jul 2026 16:42:44 +0530 Subject: [PATCH] docs(contributing): fix troubleshooting accordion code block formatting (#3269) --- docs/contributing/development.mdx | 47 ++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/docs/contributing/development.mdx b/docs/contributing/development.mdx index 435a2d839..b5f4a08ae 100644 --- a/docs/contributing/development.mdx +++ b/docs/contributing/development.mdx @@ -270,24 +270,43 @@ pnpm run typecheck The Vite web server uses `PORT` (default `3000`), and the Hono server uses `SERVER_PORT` (default `3001`). - Either stop the conflicting process or choose alternate ports: ```bash PORT=3002 SERVER_PORT=3003 pnpm dev ``` + Either stop the conflicting process or choose alternate ports: + ```bash + PORT=3002 SERVER_PORT=3003 pnpm dev + ``` - - Ensure Docker containers are running: ```bash docker compose -f compose.dev.yml ps docker compose -f compose.dev.yml - up -d ``` Check that PostgreSQL is healthy and accessible on port 5432. - + + Ensure Docker containers are running: + ```bash + docker compose -f compose.dev.yml ps + docker compose -f compose.dev.yml up -d + ``` + Check that PostgreSQL is healthy and accessible on port 5432. + - - Verify SeaweedFS is running and the bucket exists: ```bash docker compose -f compose.dev.yml logs seaweedfs docker - compose -f compose.dev.yml logs seaweedfs_create_bucket ``` If the bucket wasn't created, restart the bucket - creation service: ```bash docker compose -f compose.dev.yml restart seaweedfs_create_bucket ``` - + + Verify SeaweedFS is running and the bucket exists: + ```bash + docker compose -f compose.dev.yml logs seaweedfs + docker compose -f compose.dev.yml logs seaweedfs_create_bucket + ``` + If the bucket wasn't created, restart the bucket creation service: + ```bash + docker compose -f compose.dev.yml restart seaweedfs_create_bucket + ``` + - - The route tree may need regeneration. Run the dev server which auto-generates routes: ```bash pnpm run dev ``` Or - run type checking to see specific errors: ```bash pnpm run typecheck ``` - + + The route tree may need regeneration. Run the dev server which auto-generates routes: + ```bash + pnpm run dev + ``` + Or run type checking to see specific errors: + ```bash + pnpm run typecheck + ``` +