All checks were successful
Push image to registry / build-image (push) Successful in 4m20s
15 lines
572 B
PHP
15 lines
572 B
PHP
<?php
|
|
|
|
use App\Browser\Jobs\Hellcase\HellcaseJob;
|
|
use App\Models\Job;
|
|
use App\Services\BrowserJobsInstances;
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
Schedule::job(new HellcaseJob)->daily()->onOneServer()->withoutOverlapping()->name('hellcase')->description('Hellcase job');
|
|
// Schedule::job(new HellcaseJob)->everyMinute()->onOneServer()->withoutOverlapping()->name('hellcase')->description('Hellcase job');
|