change default port

This commit is contained in:
Raven Scott 2024-09-16 07:55:16 -04:00
parent 4df0d17183
commit 7d4ec0e523

2
app.js
View File

@ -118,7 +118,7 @@ app.get('/blog/:slug', (req, res) => {
// Server Listening // Server Listening
// ================================ // ================================
const PORT = process.env.PORT || 3000; const PORT = process.env.PORT || 8899;
app.listen(PORT, () => { app.listen(PORT, () => {
console.log(`Server running on http://localhost:${PORT}`); console.log(`Server running on http://localhost:${PORT}`);
}); });