7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
import app from './app.js';
|
|
|
|
const port = process.env.PORT || 5000;
|
|
app.listen(port, () => {
|
|
console.log(`🚀 Server running on http://localhost:${port}`);
|
|
});
|