1
0
Fork 0

use a fixed URL for the merged calendar

This commit is contained in:
Ryan Mwangi 2024-10-08 22:22:35 +03:00
parent 3d31d039d8
commit 37108217d8
1 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ END:VEVENT
fs.writeFileSync(filename, icalString);
// Generate a unique URL for the merged calendar
const mergedCalendarUrl = `${req.protocol}://${req.get('host')}/${filename}`;
const mergedCalendarUrl = `http://localhost:3000/${filename}`;
// Store the merged calendar URL in a file
fs.writeFileSync(mergedCalendarUrlFile, mergedCalendarUrl);
@ -197,7 +197,7 @@ app.get('/merged-calendar', (req, res) => {
const mergedCalendarUrl = fs.readFileSync(mergedCalendarUrlFile, 'utf8');
res.redirect(mergedCalendarUrl);
});
// Start the server
const port = 3000;
app.listen(port, () => {