Files
leonm ea5a5737ec
CI / 🧪 Tests Laravel (push) Successful in 2m15s
CI / 🐳 Build & Push Images (push) Successful in 1m9s
feat: remove horizon
2026-08-13 16:58:13 +02:00

31 lines
831 B
PHP

<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Schedule;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
Schedule::command('sanctum:prune-expired --hours=24')
->daily()
->withoutOverlapping()
->onOneServer();
Schedule::command('auth:clear-resets')
->daily()
->withoutOverlapping()
->onOneServer();
Schedule::command('device-tokens:prune-stale --days=180')
->daily()
->withoutOverlapping()
->onOneServer();
Schedule::command('meal-posts:generate-ai')
->daily()
->withoutOverlapping(55)
->onOneServer();
Schedule::command('notifications:send-engagement-reminders')
->dailyAt('13:02')
->withoutOverlapping(30)
->onOneServer();