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

# Introduction

> Build faster, more reliable apps that make users happy

Cronatic is a task queueing service built for serverless and edge functions. It provides a simple, reliable, and scalable way to defer code execution, schedule background jobs, and build event-driven applications.

## How it Works

1. **Define:** Write your Task function in any language / framework.
2. **Enqueue (Schedule):** Tell us when the Task should run.
3. **Webhook:** We’ll notify you with a webhook when it’s time to execute the Task.
4. **Automatic Retries:** If something doesn’t work, we’ll try again.
5. **Task History:** Track what happened for easy debugging.

## Quickstart

<CardGroup cols={2}>
  <Card title="Next.js" icon="nextjs" href="/quickstart/nextjs">
    Learn how to use Cronatic with Next.js.
  </Card>

  <Card title="Node.js with Express" icon="node-js" href="/quickstart/express">
    Learn how to use Cronatic with Express.
  </Card>

  <Card title="PHP with Laravel" icon="laravel" href="/quickstart/php-laravel">
    Learn how to use Cronatic with Laravel.
  </Card>

  <Card title="Python with Flask" icon="python" href="/quickstart/python-flask">
    Learn how to use Cronatic with Flask.
  </Card>

  <Card title="Ruby with Sinatra" icon="gem" href="/quickstart/sinatra">
    Learn how to use Cronatic with Sinatra.
  </Card>

  <Card title="Go with Gin" icon="golang" href="/quickstart/go-gin">
    Learn how to use Cronatic with Gin.
  </Card>
</CardGroup>

## Learn More

<CardGroup cols={2}>
  <Card title="Tasks & Schedules" icon="calendar-days" href="/concepts/tasks-and-schedules">
    Better understand the two core concepts of Cronatic: tasks & schedules.
  </Card>

  <Card title="How Tasks Work" icon="gears" href="/concepts/how-tasks-work">
    Learn more about tasks for one-off asynchronous workloads.
  </Card>

  <Card title="How Schedules Work" icon="clock" href="/concepts/how-schedules-work">
    Learn more about schedules and how they create tasks.
  </Card>

  <Card title="Request Failures & Retries" icon="triangle-exclamation" href="/concepts/request-failures-and-retries">
    Learn how Cronatic retries tasks when they fail.
  </Card>
</CardGroup>
