This commit is contained in:
Itamar Oren
2023-02-22 14:35:53 -05:00
parent cf7d361cf2
commit c5e1ad814c
+3 -1
View File
@@ -121,4 +121,6 @@ app.get('/createCalendar', async (req, res) => {
res.send(await createIcs())
});
app.listen(5000, () => console.log(`App listening on port ${port}`));
const port = 5000;
app.listen(port, () => console.log(`App listening on port ${port}`));