#feature: add AI log analysis & some bugfix

This commit is contained in:
2026-01-14 13:58:50 +08:00
parent e479ed02ea
commit ae6c169f5f
33 changed files with 3898 additions and 164 deletions

View File

@@ -1,6 +1,5 @@
<?php
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
@@ -31,14 +30,4 @@ return Application::configure(basePath: dirname(__DIR__))
->withExceptions(function (Exceptions $exceptions): void {
//
})
->withSchedule(function (Schedule $schedule): void {
$schedule->command('git-monitor:check')
->everyTenMinutes()
->withoutOverlapping()
->runInBackground();
$schedule->command('git-monitor:cache')
->dailyAt('02:00')
->withoutOverlapping();
})
->create();

View File

@@ -2,7 +2,4 @@
return [
App\Providers\AppServiceProvider::class,
App\Providers\ClientServiceProvider::class,
App\Providers\EnvServiceProvider::class,
App\Providers\GitMonitorServiceProvider::class,
];