import { app } from "./app"; const PORT = process.env.PORT ?? 3001; app.listen(PORT, () => { console.log(`Mike backend running on port ${PORT}`); });