feat: health
Laravel CI-CD / Tests Unitaires (push) Successful in 21s Details
Laravel CI-CD / Deploy with Kamal (push) Successful in 1m48s Details

This commit is contained in:
Leon Morival 2026-05-20 09:25:56 +02:00
parent 2887260830
commit 4ec9aab5b6
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,8 @@ Route::prefix('auth')->group(function (): void {
});
});
// Health
Route::get('/health', function () {
return response()->json(['status' => 'ok']);
});