Is crontab still needed, when supervisor is running

I successfully installed supervisor.

Does this mean that the crontab

* * * * * cd /path/to/invoiceninja/ && php artisan schedule:run >> /dev/null 2>&1

is no longer needed? Or am I missing something?

Hi,

Supervisor is used to process queued jobs, the queue:work cron won’t be needed but schedule:run is needed.

Cheers. Then I will leave it like it is.