command('schedule-monitor:sync')->dailyAt('04:56'); $schedule->command('schedule-monitor:clean')->daily(); //Horizon Graph Schedule $schedule->command('horizon:snapshot')->everyFiveMinutes(); //Test rung to help figure out what is going on. //$schedule->command('inspire')->everyMinute(); /** * Purge Data Schedule */ $schedule->job(new PurgeUsersJob) ->weekly(); /** * Finances Update Schedule */ $schedule->job(new UpdateAllianceWalletJournalJob) ->timezone('UTC') ->hourlyAt('45') ->withoutOverlapping(); /** * Item Update Schedule */ $schedule->job(new UpdateItemPricesJob) ->timezone('UTC') ->hourlyAT('30') ->withoutOverlapping(); /** * Mining Tax Schedule */ $schedule->job(new FetchMiningTaxesObserversJob) ->timezone('UTC') ->dailyAt('22:00'); $schedule->job(new PreFetchMiningTaxesLedgersJob) ->timezone('UTC') ->dailyAt('20:00'); $schedule->job(new SendMiningTaxesInvoicesJob) ->timezone('UTC') ->weeklyOn(1, '06:00'); $schedule->job(new ProcessMiningTaxesPaymentsJob) ->timezone('UTC') ->hourlyAt('15'); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }