2020-04-30 18:39:51 +00:00
|
|
|
require('dotenv').config()
|
2020-04-30 12:25:28 +00:00
|
|
|
const app = require("./api/server");
|
|
|
|
const PORT = process.env.PORT || 3000;
|
2020-04-14 12:42:49 +00:00
|
|
|
|
2020-04-30 12:25:28 +00:00
|
|
|
app.listen(PORT, () =>
|
|
|
|
console.log(`Meeting Planner Backend listening at http://localhost:${PORT}`),
|
|
|
|
);
|