> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lovable.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Jobs

> Review the scheduled background jobs in your app's built-in backend (Cloud), check their run history, and enable or disable them.

Jobs are scheduled background tasks, used when your app needs to perform recurring work such as checking for new information, posting updates, or syncing data. Ask Lovable to set one up. For example:

```text wrap theme={null}
Schedule a daily job at 7 AM that emails me a summary of today's follow-ups.
```

To review your project's jobs, go to **Cloud tab → Jobs**.

## Review and control jobs

The Jobs view lists every scheduled job. Click a job to see:

* **Scheduled**: the job's schedule in plain language, for example "Every day at 08:00 AM" or "Every 15 minutes".
* **Last run**: when the job last executed.
* A run history table showing each execution's start time, end time, and status (**Succeeded**, **Failed**, or **Running**).

Use **Enable** or **Disable** to control a job. A disabled job does not run again until you enable it.

The view does not update live. Use **Refresh** to reload the job list, or the run history's own **Refresh** to load new executions.

Creating a job, changing its schedule, or deleting one happens by asking Lovable in chat or through SQL, not from the Jobs view.

<Note>
  Jobs that run often or take longer to complete can increase credit usage. See [Usage and costs](/features/usage-and-costs) to review what your project's jobs consume.
</Note>

[Project monitoring](/features/project-monitoring) can alert you when scheduled jobs fail, so you don't have to check the run history manually.

## FAQ

<AccordionGroup>
  <Accordion title="How do I create or delete a job?">
    Ask Lovable in chat, for example "Schedule a job that cleans up expired sessions every night at midnight" or "Delete the daily summary job". The Jobs view is for reviewing, enabling, and disabling jobs, not creating them.
  </Accordion>

  <Accordion title="Why didn't my project pause automatically?">
    Lovable auto-pauses projects on the built-in backend (Cloud) after a period of inactivity, but scheduled jobs and other background activity keep a project active. If a project only exists to run jobs you no longer need, disable the jobs or [pause the project manually](/features/advanced-settings#pause-cloud).
  </Accordion>

  <Accordion title="Do jobs use credits?">
    Yes. Each run consumes Cloud usage like any other backend work, so frequent or long-running jobs increase the project's run credit usage. Review the impact in [Usage and costs](/features/usage-and-costs).
  </Accordion>
</AccordionGroup>
