chore: seminarhof customer project

This commit is contained in:
e2e
2026-07-11 08:11:01 +02:00
commit f0853ebe73
188 changed files with 20784 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { wireScheduler } from '#pikku'
import { bookingLifecycleDaily } from '../functions/booking-lifecycle.function.js'
// Daily at 06:00. The job's date math is Europe/Berlin regardless of the
// platform's clock, so the exact server-local fire time only sets cadence.
wireScheduler({
name: 'booking-lifecycle-daily',
schedule: '0 6 * * *',
func: bookingLifecycleDaily,
tags: ['daily', 'booking-lifecycle'],
})