X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FConsole%2FKernel.php;h=14c784032cf28fd76dd4c181a39510cd73056278;hb=7aa9c88df0a0ac66c4a2f8473705aed8ccc65d06;hp=904bfd19db2522e245aeab8bfa5c6799a38bbb69;hpb=c426e270c4da363fd5547cad6ff185d2e7c94e43;p=alttp.git diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 904bfd1..14c7840 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -15,9 +15,15 @@ class Kernel extends ConsoleKernel */ protected function schedule(Schedule $schedule) { - $schedule->command('sync:avatars')->everyFiveMinutes(); + $schedule->command('twitch:channel-info')->everyFiveMinutes(); + $schedule->command('sync:ladder')->daily(); $schedule->command('sync:speedgaming')->everyFiveMinutes(); $schedule->command('sync:sra')->everyFifteenMinutes(); + $schedule->command('sync:zsr')->everyFifteenMinutes(); + $schedule->command('sync:avatars')->everyFiveMinutes(); + $schedule->command('sync:racetime')->everyFiveMinutes(); + $schedule->command('chat:evaluate 100')->everyMinute(); + $schedule->command('guessing:clean')->everyFifteenMinutes(); } /**