From a4fc98287ecc1ccfbda078a0bfafe01481c33b13 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:11:00 +0100 Subject: [PATCH] Create cron-syntax.mdx --- .../docs/knowledge-base/cron-syntax.mdx | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/content/docs/knowledge-base/cron-syntax.mdx diff --git a/src/content/docs/knowledge-base/cron-syntax.mdx b/src/content/docs/knowledge-base/cron-syntax.mdx new file mode 100644 index 0000000..fbf5b38 --- /dev/null +++ b/src/content/docs/knowledge-base/cron-syntax.mdx @@ -0,0 +1,35 @@ +--- +title: "Supported Cron Syntax" +head: + - tag: "meta" + attrs: + property: "og:title" + content: "Supported Cron Syntax for Coolify" +description: "An overview of the supported cron syntax for Coolify." +--- + +Coolify supports scheduling automated tasks like cleanups, backups, and more using cron syntax. + +## Supported Syntax + +### Standard Cron Format +Coolify supports the complete standard cron syntax format (`* * * * *`). + +### Predefined Schedules +For convenience, Coolify also supports the following predefined schedule strings: + +#### Without @ Prefix +- `every_minute` - Runs every minute +- `hourly` - Runs once per hour +- `daily` - Runs once per day +- `weekly` - Runs once per week +- `monthly` - Runs once per month +- `yearly` - Runs once per year + +#### With @ Prefix +- `@every_minute` - Runs every minute +- `@hourly` - Runs once per hour +- `@daily` - Runs once per day +- `@weekly` - Runs once per week +- `@monthly` - Runs once per month +- `@yearly` - Runs once per year