Step 7: Configure the Scheduler
Laravel’s scheduler handles periodic tasks, including weekly license re-verification. Add this cron entry:
crontab -eAdd this line:
* * * * * cd /var/www/ai-education-studio && php artisan schedule:run >> /dev/null 2>&1Info: The scheduler runs every minute and checks if any scheduled tasks (like license verification, cache clearing, report generation) need to run.
Last updated on