comment(Inspiring::quote()); })->purpose('Display an inspiring quote'); Schedule::command('disposable:update')->weekly(); Schedule::command('clean:directories')->hourly()->withoutOverlapping(); Schedule::command('nntmux:delete-unverified-users')->twiceDaily(1, 13); Schedule::command('nntmux:update-expired-roles')->daily(); Schedule::command('nntmux:remove-bad')->hourly()->withoutOverlapping(); Schedule::command('telescope:prune')->daily(); Schedule::command('horizon:snapshot')->everyFiveMinutes()->withoutOverlapping(); Schedule::command('cloudflare:reload')->daily(); Schedule::command('cache:prune-stale-tags')->hourly(); Schedule::command('nntmux:collect-stats')->hourly(); Schedule::command('nntmux:populate-steam-apps')->monthly(); if (config('nntmux.purge_inactive_users') === true) { Schedule::job(new RemoveInactiveAccounts)->daily(); Schedule::job(new PurgeDeletedAccounts)->daily(); }