flamix/supervisor-poor

Supervisor for poor people

Installs: 635

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/flamix/supervisor-poor

dev-main 2023-09-12 17:28 UTC

This package is auto-updated.

Last update: 2025-09-12 22:07:48 UTC


README

This is a custom Laravel Artisan command that checks if specified commands are running and starts them if not.

// Add to config/queue.php
'supervisor' => [
    'queue:listen --queue=demo' => 1,
]

// Add to cron
$schedule->command('flamix:supervisor')->everyFiveMinutes()->runInBackground();

Mannually run command

php artisan flamix:supervisor