This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 8050860ee4bde301c5d831470602d464b93848ea
Author: Stephen Mallette <[email protected]>
AuthorDate: Tue Jul 14 10:41:39 2026 -0400

    Serve gremlator on port 5174 so it can run alongside gremlint
    
    Both docs apps are Vite projects defaulting to 5173, so starting one while 
the
    other was running silently moved it to a different port. Pins gremlator to 
5174
    and corrects the dev server URLs in both READMEs; gremlint's still pointed 
at
    the port it used before the move off Create React App.
    
    Assisted-by: Claude Code:claude-opus-4-8
---
 docs/gremlator/README.md      | 2 +-
 docs/gremlator/vite.config.ts | 2 ++
 docs/gremlint/README.md       | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/docs/gremlator/README.md b/docs/gremlator/README.md
index 1b0854a36a..36f2d95d04 100644
--- a/docs/gremlator/README.md
+++ b/docs/gremlator/README.md
@@ -40,7 +40,7 @@ npm start
 ```
 
 Runs the app in the development mode.\
-Open [http://localhost:5173/gremlator](http://localhost:5173/gremlator) to 
view it in the browser.
+Open [http://localhost:5174/gremlator](http://localhost:5174/gremlator) to 
view it in the browser.
 
 The page will reload if you make edits.\
 You will also see any lint errors in the console.
diff --git a/docs/gremlator/vite.config.ts b/docs/gremlator/vite.config.ts
index 21266ca799..e4f5ca5f2a 100644
--- a/docs/gremlator/vite.config.ts
+++ b/docs/gremlator/vite.config.ts
@@ -40,6 +40,8 @@ export default defineConfig({
     extensions: ['.mjs', '.ts', '.js', '.mts', '.jsx', '.tsx', '.json'],
   },
   server: {
+    // 5174 keeps gremlator off gremlint's default 5173 so both can run at once
+    port: 5174,
     fs: {
       allow: ['..'],
     },
diff --git a/docs/gremlint/README.md b/docs/gremlint/README.md
index 9ab91877eb..9133c956fa 100644
--- a/docs/gremlint/README.md
+++ b/docs/gremlint/README.md
@@ -44,7 +44,7 @@ npm start
 ```
 
 Runs the app in the development mode.\
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
+Open [http://localhost:5173/gremlint](http://localhost:5173/gremlint) to view 
it in the browser.
 
 The page will reload if you make edits.\
 You will also see any lint errors in the console.

Reply via email to