feat: initialize CalBook project with comprehensive scheduling, admin, and deployment infrastructure

This commit is contained in:
2026-05-07 13:04:02 +02:00
parent 51acfe9488
commit ee48a93824
133 changed files with 26049 additions and 0 deletions

28
scripts/run-sync.ts Normal file
View File

@@ -0,0 +1,28 @@
import { syncAllEnabledCalendars } from "../lib/services/caldav";
import { runAppointmentReminders } from "../lib/services/reminders";
async function main() {
const [syncResult, reminderResult] = await Promise.all([
syncAllEnabledCalendars(),
runAppointmentReminders()
]);
console.log(
JSON.stringify(
{
sync: syncResult,
reminders: reminderResult
},
null,
2
)
);
}
main()
.catch((error) => {
console.error(error);
process.exit(1);
})
.finally(() => {
process.exit(0);
});