Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A modern solution for running Laravel Horizon with a CRON-based supervisor.

License

NotificationsYou must be signed in to change notification settings

ralphjsmit/laravel-horizon-cron-supervisor

Repository files navigation

laravel-horizon-cron-supervisor@2x

A modern solution for running Laravel Horizon with a cron-based supervisor

Run Laravel Horizon on cheap hosting environments without Supervisor🤑

This Laravel package automatically checks every three minutes if yourLaravel Horizon instance is still running. In that way, it is the perfect replacement for the normally recommendedSupervisor Process Control System, for which you need your own server.

This package allows running Laravel Horizon on shared hosting instances and servers where you don't have to option to install Supervisor.

Under the hood, the package automatically schedules a simple Artisan command to run every three minutes that checks whether Horizon is still running. If not, it'll restart the Horizon queues.

Installation

Run the following command to install the package:

composer require ralphjsmit/laravel-horizon-cron-supervisor

The package works without any configuration.Note that you need to have the Laravel Scheduler configured correctly.

Publishing the config file

You can publish the config file or just use the environment variables.

php artisan vendor:publish --tag="horizon-cron-supervisor-config"

The config file contents.

<?phpreturn [/**     * Enables Horizon Cron Supervisor     */'enabled' =>env('HORIZON_CRON_SUPERVISOR_ENABLED',true),/**     * Run every X minutes or define a cron expression like "0,20,40 * * * *"     */'schedule' =>env('HORIZON_CRON_SUPERVISOR_SCHEDULE',3),];

How does this work with new deployments?

When you deploy a new version of your app, you usually shut down your queues and Horizon instances in order let them use the files. The Laravel Scheduler doesn't run any commands when your application is inmaintenance mode (php artisan down). Thus as long as your application is in maintenance mode, you don't need to worry about this package restarting your queues when you don't want that.

A typical deployment workflow could look something like this:

# Prepare deploymentphp artisan downphp artisan horizon:terminate# Do deployment logic# Horizon will not be restarted until you put the application out of maintenance modephp artisan horizonphp artisan up# Finish up deployment

Note that this workflow is greatly simplified and doesn't take into account anything specific to your server or running commands like your migrations.

About the package

This package was created byRalph J. Smit. Checkout my websiteralphjsmit.com forLaravel and development-related tutorials.

The package was inspired bythis StackOverflow question and my need for this as well. Special thanks toahoffman for his code on running and checking whether Horizon is active.

About

A modern solution for running Laravel Horizon with a CRON-based supervisor.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors5

Languages


[8]ページ先頭

©2009-2025 Movatter.jp