Update default port to 3005 for test instance

This commit is contained in:
2025-12-31 02:58:57 +00:00
parent 61ea64b13d
commit 6dc58c2fc3
3 changed files with 3 additions and 9 deletions
+2 -2
View File
@@ -468,8 +468,8 @@ app.onError((err, c) => {
return c.text('Internal Server Error', 500);
});
// Default to 3004 for Redis branch; can be overridden by Environment=PORT
const PORT = Number(process.env.PORT || 3004);
// Default to 3005 for test instance; can be overridden by Environment=PORT
const PORT = Number(process.env.PORT || 3005);
logLine('logs/server.log', `Starting frontend server (Redis version) on port ${PORT}`);