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

# Antideploy: Deploy Any App Without Touching Cloud Config

> Antideploy reads your code, works out what it needs to run, builds it, and deploys it: no Dockerfile, no YAML, no cloud console.

Antideploy deploys apps built anywhere: with Claude Code, Cursor, Codex,
traditional development, or a low-code tool. Bring your project through
GitHub, a folder upload, or an API call. Antideploy reads the code, works out
what it is and what it needs, builds it, and runs it.

You do not describe your app to it. It reads your files and tells you what it
found, with the evidence, before anything is built.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/docs/quickstart">
    Deploy your first app in five minutes.
  </Card>

  <Card title="How It Works" icon="circle-info" href="/docs/how-it-works">
    What happens between pushing code and getting a URL.
  </Card>

  <Card title="Deploy from GitHub" icon="github" href="/docs/deploying/github">
    Connect a repository and redeploy on every push.
  </Card>

  <Card title="Deploy over the API" icon="terminal" href="/docs/api/deploy">
    One HTTP request. What an AI coding agent uses.
  </Card>
</CardGroup>

## What gets handled for you

<CardGroup cols={2}>
  <Card title="Compute" icon="server" href="/docs/infrastructure/compute">
    Containers built and run for you. Scales to zero when idle, so an app
    nobody is using costs nothing.
  </Card>

  <Card title="PostgreSQL" icon="database" href="/docs/infrastructure/databases">
    Provisioned automatically when your code uses it, with the connection
    string injected as `DATABASE_URL`.
  </Card>

  <Card title="HTTPS" icon="lock" href="/docs/infrastructure/overview">
    Every app is served over TLS on a generated URL.
  </Card>

  <Card title="Configuration" icon="key" href="/docs/configuration/environment-variables">
    Environment variables and secrets, encrypted at rest and injected at
    release.
  </Card>
</CardGroup>

## Using an AI coding agent?

Give your agent the project's API key and this URL:

```
https://antideploy.com/api/v1
```

That returns the complete API contract as JSON: endpoints, request shapes,
error codes and limits. No key is needed to read it. An agent can go from
"here is a key" to a working deploy without a browser.

<Card title="Deploy over the API" icon="terminal" href="/docs/api/deploy">
  The full reference, with the one command that ships a project directory.
</Card>

## What Antideploy does not do yet

<Warning>
  No object storage, custom domains, background workers, cron jobs, staging
  environments, or horizontal scaling. Each app runs on a single instance that
  scales to zero.

  Antideploy detects when your project needs one of these and tells you at
  analysis time, before you deploy, not after.
</Warning>
