Added healthcheck endpoints; Fixed filament check

This commit is contained in:
Constantin Graf
2024-04-12 14:00:17 +02:00
parent 21194eaa05
commit 2045bf6ba9
3 changed files with 67 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
declare(strict_types=1);
use App\Http\Controllers\Web\DashboardController;
use App\Http\Controllers\Web\HealthCheckController;
use App\Http\Controllers\Web\HomeController;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
@@ -59,3 +60,6 @@ Route::middleware([
})->name('tags');
});
Route::get('health-check/up', [HealthCheckController::class, 'up']);
Route::get('health-check/debug', [HealthCheckController::class, 'debug']);