7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
//Starts
|
|
import app from "./app.js";
|
|
|
|
const PORT = process.env.PORT || 3000;
|
|
app.listen(PORT, () => {
|
|
console.log(`Transit API http://localhost:${PORT}`);
|
|
}); |