Task scheduling extension for open-developer

v1.0.0 2023-08-13 21:49 UTC

This package is auto-updated.

Last update: 2024-06-13 23:36:34 UTC


README

Scheduling task manager for open-developer

A web interface for manage task scheduling in laravel.

Screenshot

extention-schedualing

Installation

composer require open-developer-ext/scheduling
php artisan developer:import scheduling

Open http://your-host/developer/scheduling.

Try to add a scheduling task in app/Console/Kernel.php like this:

class Kernel extends ConsoleKernel
{
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('inspire')->everyTenMinutes();

        $schedule->command('route:list')->dailyAt('02:00');
    }
}

And you can find these tasks in scheduling panel.

Debugging

If console shows errors like: sh: : command not found Try adding this your .env file: PHP_BINARY=/path/to/your/php/binaray/