Cron jobs

Background jobs keeping data in good condition.

To keep the data in good condition it is required to run following cron jobs. The full list of commands for cron jobs is available below.

Command

Description

app:invoices:check-overdue

Marking overdue invoices.

app:subscriptions:check

Check for background payments.

app:tasks:check-overdue

Marking overdue tasks.

app:tasks:check-repeatable

Duplicating repeatable tasks.

On Linux machine you can configure cron job by editing the cron job.

$ crontab -e

After saving the file all changes are applied.

*/10 * * * * cd PROJECT_ROOT; php bin/console app:invoices:check-overdue

Last updated