remove: all deploy UI/backend code, keep _deploy folder only

- Delete DeployRunCommand, DeployController, deploy API routes
- Delete Dashboard/Deploy Vue pages and components
- Remove deploy route from web.php
- Remove deploy quick action from config
- Remove DeployRunCommand from ConsoleKernel
This commit is contained in:
F4ilji
2026-07-02 17:36:42 +05:00
parent c8693b8f0e
commit 709c51ea49
10 changed files with 0 additions and 487 deletions
@@ -416,11 +416,6 @@ Route::middleware(['access-check', 'dashboard.auth'])->group(function () {
Route::put('/{credential}', [IntegrationCredentialsController::class, 'update'])->name('update');
Route::delete('/{credential}', [IntegrationCredentialsController::class, 'destroy'])->name('destroy');
});
// Deploy
Route::get('/dashboard/deploy', function () {
return inertia()->render('Dashboard/Deploy/Index');
})->name('dashboard.deploy');
});