I’m self-hosting v5 but installed via Softaculous on my hosting provider. I had the little red triangle in the bottom-left corner showing up telling me to fix my cron job configuration. I went into the Cron job config and forced a rerun as apparently the Softaculous installation creates these automatically, and the little red triangle went away. However, I found a reference in the docs about adding the following Cron job config to increase app performance:
/home/me/invoice.me.com && /opt/alt/php81/usr/bin/php -d register_argc_argv=On artisan queue:work --stop-when-empty
I likewise, as a result of the Softaculous install, have the following two Cron jobs:
cd /home/me/invoice.me.com && /opt/alt/php81/usr/bin/php -d register_argc_argv=On artisan schedule:run >> /dev/null 2>&1
php /home/me/public_html/artisan ninja:send-invoices
My question is, do I need all three of these or are they all doing essentially the same thing? Can I just use the first one I posted above?
Note: All of these Cron jobs are set to run every 5 minutes.