3 - Schedule fedi-discover:poll every minute

This commit is contained in:
myrmidex 2026-04-26 00:46:59 +02:00
parent 1b713e3539
commit 2cb86f3337

View file

@ -1,8 +1,8 @@
<?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('fedi-discover:poll')
->everyMinute()
->withoutOverlapping(5)
->runInBackground();