Compare commits
No commits in common. "4fd447104b7f9de6c0819cccc74f3a8caeed6bfb" and "094123b768bd3ebcdaf79e09b0fcdef3c620bccf" have entirely different histories.
4fd447104b
...
094123b768
3 changed files with 7 additions and 20 deletions
|
@ -1,10 +0,0 @@
|
|||
[
|
||||
{
|
||||
"url": "https://example.com/calendar1.ics",
|
||||
"prefix": "Calendar 1"
|
||||
},
|
||||
{
|
||||
"url": "https://example.com/calendar2.ics",
|
||||
"prefix": "Calendar 2"
|
||||
}
|
||||
]
|
|
@ -41,4 +41,9 @@ const form = document.getElementById('merge-form');
|
|||
});
|
||||
});
|
||||
|
||||
|
||||
//regular refresh
|
||||
const refreshInterval = 60 * 60 * 1000; // 1 hour
|
||||
setInterval(() => {
|
||||
// Fetch new calendar data and update the merged calendar
|
||||
updateMergedCalendar();
|
||||
}, refreshInterval);
|
10
server.js
10
server.js
|
@ -97,16 +97,8 @@ app.listen(port, () => {
|
|||
console.log(`Server started on port ${port}`);
|
||||
});
|
||||
|
||||
// Function to update the merged calendar
|
||||
async function updateMergedCalendar(){
|
||||
try {
|
||||
// Load calendars data from file
|
||||
const calendarsFile = 'calendars.json';
|
||||
const calendars = JSON.parse(fs.readFileSync(calendarsFile, 'utf8'));
|
||||
}
|
||||
}
|
||||
// Schedule a cron job to update the merged calendar every hour
|
||||
cron.schedule('0 * * * *', () => {
|
||||
console.log('Updating merged calendar...');
|
||||
// TO DO: implement the logic to update the merged calendar
|
||||
});
|
||||
});
|
Loading…
Add table
Reference in a new issue