# Overview





<div className="grid gap-8 rounded-2xl bg-bg-2 p-6 md:p-8 xl:grid-cols-[1fr_1.1fr] xl:items-center">
  <div className="not-prose">
    <p className="mb-4 text-sm text-fg-2">
      Clusterbase Platform
    </p>

    <h1 className="text-fg-1 text-4xl font-normal leading-tight tracking-tight md:text-5xl">
      Deploy your first application.
    </h1>

    <p className="mt-5 max-w-lg text-base leading-relaxed text-fg-2">
      Go from code to a live application in about 60 seconds. Deploy functions and container services, then connect databases, storage, and custom domains.
    </p>

    <div className="mt-8 flex flex-wrap gap-3">
      <a href="/docs/ccp/quickstart" className="ctaClass('solid', 'px-5 py-3')">
        Deploy your first application →
      </a>

      <a href="/docs/ccp/installation" className="ctaClass('outline', 'px-5 py-3')">
        Install the CLI
      </a>
    </div>
  </div>

  <div className="min-w-0 rounded-xl border border-line-1 bg-bg-1 p-4 [&_figure]:my-0">
    <p className="not-prose mb-4 text-sm text-fg-2">
      Your first deployment · after installing CCP
    </p>

    ```bash
    # Sign in to your Cluster account
    ccp auth login

    # Create an app and link it to your organization
    ccp init my-app
    cd my-app

    # Deploy your application
    ccp deploy --prod
    ```
  </div>
</div>

## Build on the platform [#build-on-the-platform]

Start with the workload you want to run. Use the `ccp` CLI to develop locally and manage your deployments, or integrate directly with the [Platform API](/docs/api/infra-api).

<Cards>
  <Card title="Functions" href="/docs/ccp/functions" description="Deploy JavaScript and TypeScript request handlers on the serverless runtime." />

  <Card title="Compute services" href="/docs/ccp/compute" description="Run container applications with public HTTPS endpoints and deployment history." />

  <Card title="Static sites" href="/docs/ccp/static-sites" description="Publish a static website or serve a single-page application alongside your functions." />

  <Card title="Sandboxes" href="/docs/ccp/sandboxes" description="Create isolated environments for code execution and development tools." />
</Cards>

## Connect your application [#connect-your-application]

<Cards>
  <Card title="Databases" href="/docs/ccp/database" description="Create and connect to managed Postgres databases." />

  <Card title="Storage" href="/docs/ccp/storage" description="Upload files and serve assets from the edge." />

  <Card title="Custom domains" href="/docs/ccp/domains" description="Give your application its own domain with automatic TLS." />
</Cards>

## Develop and ship [#develop-and-ship]

* [Organize your projects](/docs/ccp/projects) — group applications and resources within your organization.
* [Work locally](/docs/ccp/dev) — run your function locally and see changes as you edit.
* [Configure environments](/docs/ccp/environment-variables) — manage application configuration and secrets.
* [Automate deployments](/docs/ccp/ci) — deploy from your CI/CD workflow.

Looking for AI tools? Explore [Cluster Build](/docs/build/overview), [managed agents](/docs/agents/overview), or the [LLM Gateway](/docs/llm-gateway/overview).
