everyTenMinutes()->name('sync-lemmy-channel-posts'); Schedule::job(new PublishNextArticleJob) ->everyFiveMinutes() ->name('publish-next-article') ->withoutOverlapping() ->onOneServer(); Schedule::job(new ArticleDiscoveryJob) ->everyThirtyMinutes() ->name('refresh-articles') ->withoutOverlapping() ->onOneServer(); Schedule::job(new CheckFeedStalenessJob) ->hourly() ->name('check-feed-staleness') ->withoutOverlapping() ->onOneServer(); Schedule::job(new CleanupArticlesJob) ->daily() ->name('cleanup-old-articles') ->withoutOverlapping() ->onOneServer();