2026-04-23 03:13:33 +02:00
|
|
|
<?php
|
|
|
|
|
|
2026-04-26 00:46:59 +02:00
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2026-04-23 03:13:33 +02:00
|
|
|
|
2026-04-26 00:46:59 +02:00
|
|
|
Schedule::command('fedi-discover:poll')
|
|
|
|
|
->everyMinute()
|
|
|
|
|
->withoutOverlapping(5)
|
|
|
|
|
->runInBackground();
|