Skip to content

Cron

Cron is a common workload task which Drupal performs in the background.

For Drupal projects on Skpr, you can configure cron jobs to run from either your project defaults or environment configuration files using the format below:

cron:
  drush:
    command:  "drush cron"
    schedule: "@hourly"
  example:
    command:  "drush subcommand argument"
    schedule: "5 4 * * *"