fix(server): change default PORT from 3000 to 3001

This commit is contained in:
OhMyApps
2025-07-23 19:17:05 +02:00
parent 2ff59bd28c
commit 42a80748af

View File

@@ -982,7 +982,7 @@ async function getFileTree(dirPath, maxDepth = 3, currentDepth = 0, showHidden =
});
}
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 3001;
// Initialize database and start server
async function startServer() {