Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 344 Bytes

how-to-horizon.md

File metadata and controls

14 lines (11 loc) · 344 Bytes

How to terminate horizon?

If you have a Daemon running php artisan horizon, you might want to terminate horizon everytime you deploy to restart it. You can use the artisan:horizon:terminate for that purpose.

// config/deploy.php
    
'hooks' => [
    'ready' => [
        // ...
        'artisan:horizon:terminate',
    ],
],