All checks were successful
Push image to registry / build-image (push) Successful in 6m18s
21 lines
363 B
PHP
21 lines
363 B
PHP
<?php
|
|
|
|
use Laravel\Telescope\Http\Middleware\Authorize;
|
|
use Laravel\Telescope\Watchers;
|
|
|
|
return [
|
|
|
|
/**
|
|
* Remove old job runs from the database.
|
|
*/
|
|
'pruneOldJobRuns' => [
|
|
'enabled' => true,
|
|
|
|
/**
|
|
* How many job runs a job can keep before we start pruning old ones.
|
|
*/
|
|
'max_runs_per_job' => 50,
|
|
],
|
|
|
|
];
|