fixed port conflict for webserver gitea

This commit is contained in:
2025-11-24 16:54:20 -07:00
parent ba32d9d482
commit 9c51163505

View File

@@ -1,7 +1,8 @@
//Starts
import app from "./app.js";
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 7653;
app.listen(PORT, () => {
console.log(`Transit API http://localhost:${PORT}`);
});