require('dotenv').config() const app = require("./api/server"); const PORT = process.env.PORT || 3000; app.listen(PORT, () => console.log(`Meeting Planner Backend listening at http://localhost:${PORT}`), );