The application schedule (see app/Console/Kernel.php) includes:
notifications:due-tasks-reminderdaily at 08:00 (server time)notifications:prunedailylicense:pingdaily (skipped whenAPP_DEMOis on)
Those commands do not run unless the Laravel scheduler is triggered every minute:
* * * * * cd /var/www/protask && php artisan schedule:run >> /dev/null 2>&1
Replace /var/www/protask with the project directory.
This is independent of queue:work. You usually want both on production: scheduler for clocked jobs, queue worker for mail/Slack.
Reminders only help if tasks have due dates.
← All ProTask – Project Management Software with Time Tracking & Team Collaboration documentation