From 85a771a7aeceb937a22386e5dd79fb4a09b5ee43 Mon Sep 17 00:00:00 2001 From: hvert Date: Sat, 16 Aug 2025 16:51:45 +0300 Subject: [PATCH 1/2] fix(README): Resolve markdownlint issues - Add language identifiers to fenced code blocks (MD040) - Format bare URLs as proper markdown links (MD034) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 69714e1d8..178364c90 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ A production-ready example of a multi-tenant application built with Next.js 15, 3. Set up environment variables: Create a `.env.local` file in the root directory with: - ``` + ```javascript KV_REST_API_URL=your_redis_url KV_REST_API_TOKEN=your_redis_token ``` @@ -59,8 +59,8 @@ A production-ready example of a multi-tenant application built with Next.js 15, ``` 5. Access the application: - - Main site: http://localhost:3000 - - Admin panel: http://localhost:3000/admin + - Main site: + - Admin panel: - Tenants: http://[tenant-name].localhost:3000 ## Multi-Tenant Architecture From 27e3857e313ff16aafdfcba0ef9db4c85f66f117 Mon Sep 17 00:00:00 2001 From: hvert Date: Sat, 16 Aug 2025 17:02:42 +0300 Subject: [PATCH 2/2] fix(README): Standardize URL formatting and correct code block syntax - Consistently format all localhost URLs with angle brackets () to ensure clickable links and match markdown best practices - Change code block language from `javascript` to `bash` for .env variables to reflect the correct syntax highlighting Addresses Vercel bot recommendations for: - Inconsistent URL formatting (lines 61-64) - Incorrect language specifier for env variables (line 47) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 178364c90..dc74181cd 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ A production-ready example of a multi-tenant application built with Next.js 15, 3. Set up environment variables: Create a `.env.local` file in the root directory with: - ```javascript + ```bash KV_REST_API_URL=your_redis_url KV_REST_API_TOKEN=your_redis_token ``` @@ -61,7 +61,7 @@ A production-ready example of a multi-tenant application built with Next.js 15, 5. Access the application: - Main site: - Admin panel: - - Tenants: http://[tenant-name].localhost:3000 + - Tenants: ## Multi-Tenant Architecture