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

# nom — Deploy CLI

> Open-source CLI that deploys any project to any cloud in one command.

<Card title="GitHub" icon="github" href="https://github.com/nometria/deploy-cli">
  `nometria/deploy-cli` — MIT License
</Card>

## What it does

`nom` is a terminal tool that deploys your web app to real cloud infrastructure (AWS, GCP, Azure, DigitalOcean, Hetzner, or Vercel) with a single command. No Docker files, no CI pipelines to set up, no cloud console to navigate.

## Install

```bash theme={null}
npm install -g @nometria-ai/nom
```

## Quick start

```bash theme={null}
nom login          # Sign in via browser
nom init           # Auto-detect framework, pick your cloud
nom deploy         # Build → upload → deploy → live URL
```

## Features

| Feature                        | Description                                                                                       |
| ------------------------------ | ------------------------------------------------------------------------------------------------- |
| **Auto-detect**                | Detects Next.js, Vite, Remix, and static sites automatically                                      |
| **Browser login**              | No tokens to copy — sign in with Google, GitHub, or email                                         |
| **Staging previews**           | `nom preview` creates a free 2-hour preview URL                                                   |
| **GitHub auto-deploy**         | Connect once, every push to `main` deploys automatically                                          |
| **Instance management**        | Start, stop, upgrade, terminate from your terminal                                                |
| **Custom domains**             | `nom domain add example.com`                                                                      |
| **Env variables**              | `nom env set KEY=VALUE`                                                                           |
| **AI security scan**           | `nom scan` runs an AI-powered security + performance audit                                        |
| **AI tool configs**            | `nom setup` generates 12 config files for Cursor, Claude Code, Copilot, Cline, Windsurf, and more |
| **Claude Code slash commands** | `/deploy`, `/preview`, `/status` — deploy from inside Claude Code conversations                   |
| **AGENTS.md**                  | Universal agent guide with full API reference for any AI tool                                     |

## All 16 commands

```
nom init          nom deploy        nom preview       nom status
nom logs          nom login         nom whoami        nom setup
nom github        nom start         nom stop          nom terminate
nom upgrade       nom domain        nom env           nom scan
```

## npm

```bash theme={null}
npm install -g @nometria-ai/nom     # Install globally
npx @nometria-ai/nom deploy         # Or use without installing
```

<Info>
  See the full [CLI documentation](/cli/overview) for detailed command reference and examples.
</Info>
