delivery_system/src/index.ts

7 lines
146 B
TypeScript

import app from './app';
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
});