fixed port conflict for webserver gitea
This commit is contained in:
3
start.js
3
start.js
@@ -1,7 +1,8 @@
|
|||||||
//Starts
|
//Starts
|
||||||
import app from "./app.js";
|
import app from "./app.js";
|
||||||
|
|
||||||
const PORT = process.env.PORT || 3000;
|
|
||||||
|
const PORT = process.env.PORT || 7653;
|
||||||
app.listen(PORT, () => {
|
app.listen(PORT, () => {
|
||||||
console.log(`Transit API http://localhost:${PORT}`);
|
console.log(`Transit API http://localhost:${PORT}`);
|
||||||
});
|
});
|
||||||
Reference in New Issue
Block a user