mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
Updated the mod filter page to only show SPT versions that have been tagged by mod versions.
13 lines
440 B
PHP
13 lines
440 B
PHP
<?php
|
|
|
|
use App\Console\Commands\ImportHubCommand;
|
|
use App\Console\Commands\ResolveVersionsCommand;
|
|
use App\Console\Commands\SptVersionModCountsCommand;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command(ImportHubCommand::class)->hourly();
|
|
Schedule::command(ResolveVersionsCommand::class)->hourlyAt(30);
|
|
Schedule::command(SptVersionModCountsCommand::class)->hourlyAt(40);
|
|
|
|
Schedule::command('horizon:snapshot')->everyFiveMinutes();
|