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

# Deployment Overview

> Deploy Nextoria Hub on Vercel, other cloud platforms, or self-hosted on your own infrastructure.

## Deployment Options

| Option                      | Best For                                            | Plans      |
| --------------------------- | --------------------------------------------------- | ---------- |
| **Managed Cloud** (default) | Agencies that want zero infrastructure management   | All plans  |
| **Vercel / Netlify**        | Engineering teams that want CI/CD control           | All plans  |
| **Self-Hosted**             | Enterprises with strict data residency requirements | Scale only |

## Managed Cloud

The default and easiest option. When you sign up for Nextoria Hub, your workspace is hosted on Nextoria Hub's infrastructure. You don't need to manage servers, databases, CDN, or SSL.

**Infrastructure highlights:**

* Hosted on AWS (us-east-1 and eu-west-1)
* 99.99% uptime SLA (Scale plan)
* Automatic backups every 6 hours with 30-day retention
* CDN-accelerated static assets
* DDoS protection via Cloudflare

## Deploying to Vercel

For teams that want to run their own fork of Nextoria Hub on Vercel:

<Steps>
  <Step title="Fork the repository">
    Fork
    [github.com/AymanSdk/nexthub-agency-os](https://github.com/AymanSdk/nexthub-agency-os)
    to your GitHub organization.
  </Step>

  <Step title="Import to Vercel">
    Go to [vercel.com/new](https://vercel.com/new), import your fork, and set
    the framework preset to **Vite**.
  </Step>

  <Step title="Configure environment variables">
    In your Vercel project settings, add all required environment variables (see
    [Installation](/getting-started/installation#environment-variables)).
  </Step>

  <Step title="Deploy">
    Click **Deploy**. Vercel builds from `bun build` and serves the `dist/`
    output. Subsequent pushes to `main` trigger automatic redeployments.
  </Step>
</Steps>

### Vercel Build Settings

| Setting          | Value         |
| ---------------- | ------------- |
| Build Command    | `bun build`   |
| Output Directory | `dist`        |
| Install Command  | `bun install` |
| Node.js Version  | 20.x          |

## Next Steps

* [Self-Hosted Deployment](/deployment/self-hosted) — Docker + Kubernetes setup for full infrastructure control
* [Custom Domain](/deployment/custom-domain) — Configure your agency domain and SSL

<Info>
  For managed cloud support or assisted deployment, contact
  [support@nextoriahub.com](mailto:support@nextoriahub.com).
</Info>
