backend/index.js
2020-04-30 20:39:51 +02:00

8 lines
209 B
JavaScript

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}`),
);