File: /var/www/html/laravel/routes/console.php
<?php
use Illuminate\Support\Facades\Schedule;
Schedule::command('security-check:slack')->hourly()->sendOutputTo(storage_path('logs/cron.log'));
Schedule::command('mel:process-files')->everyMinute()->sendOutputTo(storage_path('logs/cron.log'));
Schedule::command('mel:process')->everyMinute()->sendOutputTo(storage_path('logs/cron.log'));
Schedule::command('aip:process')->everyMinute()->sendOutputTo(storage_path('logs/cron.log'));
// was used for local model, temporary disabled
//Schedule::command('rag:send-data')->everyFifteenMinutes()->sendOutputTo(storage_path('logs/cron.log'));
Schedule::command('queue:retry all')->everyFiveMinutes()->sendOutputTo(storage_path('logs/cron.log'));
Schedule::command('notam:process-compare-requests')->everyMinute()->sendOutputTo(storage_path('logs/cron.log'));