> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: About Scheduling Recurring Jobs ## Article: Scheduling Recurring Jobs ## Article Link: https://dev.wix.com/docs/develop-websites/articles/workspace-tools/developer-tools/recurring-jobs/about-scheduling-recurring-jobs.md ## Article Content: # About Scheduling Recurring Jobs Scheduling jobs allows you to schedule code to run at specified intervals. If you have code you need to run on a recurring basis, you can automate the process and prevent the need for human intervention by scheduling a recurring job. You can create jobs to run on any backend function. For example, you might create jobs that: * Import or export data once a day. * Delete collection data that is no longer relevant once a week. * Send a status report to relevant parties once a month.   ## Supported IDEs You can schedule recurring jobs using: + The [editor](https://dev.wix.com/docs/develop-websites/articles/workspace-tools/velo-workspace/workspaces/wix-studio-working-with-the-code-panel.md) (Wix Studio and Wix Editor). + The [Wix IDE](https://dev.wix.com/docs/develop-websites/articles/workspace-tools/velo-workspace/wix-ide/wix-studio-about-the-wix-ide.md) (Wix Studio). + Your [local IDE](https://dev.wix.com/docs/develop-websites/articles/workspace-tools/developer-tools/git-integration-wix-cli-for-sites/about-git-integration-wix-cli-for-sites.md) (Wix Studio and Wix Editor). ## Times You can schedule jobs to run on an hourly, daily, weekly, or monthly basis. All times in jobs are scheduled according to [UTC time](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). To calculate the UTC equivalent of your local time, find your location's UTC time offset. Then either add or subtract to your local time based on the offset. For example, the Eastern Time Zone has an offset of -5, meaning it's 5 hours behind UTC time. To convert Eastern Time to UTC, add 5 hours. The job runs within 5 minutes of the specified time. ## Limits The number and frequency of jobs you can schedule depends on whether you have a [free site](https://dev.wix.com/docs/develop-websites/articles/coding-with-velo/premium-plans/using-velo-with-a-free-wix-site.md) or a [premium plan](https://dev.wix.com/docs/develop-websites/articles/coding-with-velo/premium-plans/about-premium-plans.md): + **Free sites and most premium plans:** You can add up to 20 scheduled jobs that run at a minimum of 1 hour intervals. + **Elite and Business Elite premium plans:** You can add up to 30 jobs that run as frequently as once every 5 minutes. ## Config tool To simplify the process of building your `jobs.config` file, you can use this third-party [Jobs Config tool](https://shoonia.github.io/jobs.config). It allows you to enter the details of your jobs and builds the jobs object for you. The tool also includes a validator that can check your existing `jobs.config` file for errors. ## See also + [Schedule recurring jobs](https://dev.wix.com/docs/develop-websites/articles/workspace-tools/developer-tools/recurring-jobs/schedule-recurring-jobs.md) + [Jobs: JSON object](https://dev.wix.com/docs/develop-websites/articles/workspace-tools/developer-tools/recurring-jobs/jobs-json-object.md)