Add workers to servers (#547)

This commit is contained in:
Saeed Vaziry
2025-03-16 14:09:15 +01:00
committed by GitHub
parent 48ae561ea4
commit 72352aad8d
42 changed files with 603 additions and 454 deletions

View File

@ -34,9 +34,9 @@ public function baseCommands(): array
'name' => 'Clear Application Cache Only',
'command' => 'php artisan cache:clear',
],
// Queue Commands
// Worker Commands
[
'name' => 'Restart Queue Workers',
'name' => 'Restart Workers',
'command' => 'php artisan queue:restart',
],
[

View File

@ -15,7 +15,7 @@ public function supportedFeatures(): array
SiteFeature::COMMANDS,
SiteFeature::ENV,
SiteFeature::SSL,
SiteFeature::QUEUES,
SiteFeature::WORKERS,
];
}

View File

@ -23,7 +23,7 @@ public function supportedFeatures(): array
SiteFeature::COMMANDS,
SiteFeature::ENV,
SiteFeature::SSL,
SiteFeature::QUEUES,
SiteFeature::WORKERS,
];
}