change port number

This commit is contained in:
2025-05-28 04:44:47 -07:00
parent c7ee97d6a9
commit cfbf54040c

View File

@@ -64,7 +64,7 @@ app.post('/api/positions', (req, res) => {
});
// start server
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 3085;
server.listen(PORT, () => {
console.log(`Listening on http://localhost:${PORT}`);
});