2024-05-13 18:55:34 -04:00
|
|
|
<?php
|
|
|
|
|
2024-08-22 17:04:07 -04:00
|
|
|
use App\Console\Commands\ImportHubCommand;
|
|
|
|
use App\Console\Commands\ResolveVersionsCommand;
|
2024-08-30 23:13:46 -04:00
|
|
|
use App\Console\Commands\SptVersionModCountsCommand;
|
2024-08-31 01:19:22 -04:00
|
|
|
use App\Console\Commands\UpdateModDownloadsCommand;
|
2024-06-05 16:31:29 -04:00
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2024-05-13 18:55:34 -04:00
|
|
|
|
2024-08-22 17:04:07 -04:00
|
|
|
Schedule::command(ImportHubCommand::class)->hourly();
|
|
|
|
Schedule::command(ResolveVersionsCommand::class)->hourlyAt(30);
|
2024-08-30 23:13:46 -04:00
|
|
|
Schedule::command(SptVersionModCountsCommand::class)->hourlyAt(40);
|
2024-08-31 01:19:22 -04:00
|
|
|
Schedule::command(UpdateModDownloadsCommand::class)->hourlyAt(45);
|
2024-06-20 12:19:07 -04:00
|
|
|
|
|
|
|
Schedule::command('horizon:snapshot')->everyFiveMinutes();
|