Skip to Content
Installation GuideStep 7: Scheduler

Step 7: Configure the Scheduler

Laravel’s scheduler handles periodic tasks, including weekly license re-verification. Add this cron entry:

crontab -e

Add this line:

* * * * * cd /var/www/ai-education-studio && php artisan schedule:run >> /dev/null 2>&1

Info: The scheduler runs every minute and checks if any scheduled tasks (like license verification, cache clearing, report generation) need to run.

Last updated on