Update PORT variable to use process.env.PORT or 5053
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-03-27 18:23:55 +01:00
parent be57c29e6e
commit a09fc0f2cc
3 changed files with 39 additions and 1 deletions

View File

@@ -108,7 +108,7 @@ async function fileExists(filePath) {
}
}
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 5053;
app.listen(PORT, () => {
console.clear();
if (logger) {